Answers for "how to add no of lines of text in flutter app"

1

text overflow in new line in flutter

Row(
     children: [
                Flexible(
                  child: Text('Add long text here',
                  maxLines: 1,
                  softWrap: false,
                  overflow: TextOverflow.fade,
                  ),
                ),
              ],
            )
Posted by: Guest on November-05-2020
0

flutter how to create text with line on bot

decoration: TextDecoration.underline // this

Text("TIP & TRICK", style: TextStyle(decoration: TextDecoration.underline)),
Posted by: Guest on June-03-2021

Code answers related to "how to add no of lines of text in flutter app"

Browse Popular Code Answers by Language