Answers for "expand text if text is more then one line need to show expanded icon using flutter"

3

text overflow ellipsis flutter

Text(
    "Introduction to Very very very long text",
    maxLines: 1,
    overflow: TextOverflow.ellipsis,
    softWrap: false,
    style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
),
Posted by: Guest on May-10-2020

Code answers related to "expand text if text is more then one line need to show expanded icon using flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language