Answers for "how to enable multiline in fluter"

4

how to enable multiline text form fields flutter

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

flutter multiline

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

Browse Popular Code Answers by Language