Answers for "flutter multi line rich text box"

3

flutter multiline text field

new TextField(
  keyboardType: TextInputType.multiline,
  maxLines: whatever,
)
Posted by: Guest on May-12-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

Browse Popular Code Answers by Language