Answers for "flutter textarea input"

4

flutter textarea input

TextField(
	keyboardType: TextInputType.multiline,
    textInputAction: TextInputAction.newline,
    minLines: 1,
    maxLines: 5,
  )
Posted by: Guest on April-09-2021
4

how to enable multiline text form fields flutter

TextField(
  keyboardType: TextInputType.multiline,
  maxLines: null,
)
Posted by: Guest on July-09-2020
3

flutter multiline text field

new TextField(
  keyboardType: TextInputType.multiline,
  maxLines: whatever,
)
Posted by: Guest on May-12-2020

Browse Popular Code Answers by Language