trunc text on flutter alignment code example
Example: text in column flutter overflow ellipsis not working
return Expanded(
child: Container(
child: Column(
children: [
Text("Your text here...",
overflow: TextOverflow.ellipsis
)
]
)
)
);