I want to set maximum 2 line in my Text widget and also need to set "..."(ellipse) at the end of line
Container(
height: 100,
alignment: Alignment.topLeft,
child: Text("${news.newsDetails}"),
)
use maxLines and overflow
Text(
'${model.title}',
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With