Make sure minLine is 1 then set maxLine to desired max
CustomInputField(
controller: editingController,
autofocus: true,
maxLength: widget.editableCharSize,
minLines: 1,
maxLines: 3,
onChanged: (value) {
},
),