Answers for "flutter limit string length rich text"

0

flutter limit string length rich text

....
....

Flexible(
    child: RichText(
    overflow: TextOverflow.ellipsis, // this will help add dots after maxLines
    maxLines: 2, // max lines after that dots comes
    strutStyle: StrutStyle(fontSize: 12.0),
    text: TextSpan(
             style: TextStyle(color: Colors.black),
             text: 'A very long text :)'
          ),
       ),
    ),

.....
.....
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language