Answers for "allowing multiline textfield flutter"

4

how to enable multiline text form fields flutter

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

Code answers related to "allowing multiline textfield flutter"

Browse Popular Code Answers by Language