Answers for "flutter multiline textfield tags"

4

how to enable multiline text form fields flutter

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

multiline text flutter

Text(
     "TOP ADDED",
     textAlign: TextAlign.justify,
     overflow: TextOverflow.ellipsis,
     style: TextStyle(fontSize: 18.0),
     maxLines: 2,)
Posted by: Guest on August-01-2020

Code answers related to "flutter multiline textfield tags"

Browse Popular Code Answers by Language