style long text flutter code example
Example 1: text in column flutter overflow ellipsis not working
return Expanded(
child: Container(
child: Column(
children: [
Text("Your text here...",
overflow: TextOverflow.ellipsis
)
]
)
)
);
Example 2: how to style text in flutter
Text(
'text'
style: TextStyle(),
),