Flutter
[Flutter] flutter text overflow in container
hymndaniel
2023. 1. 12. 11:24
컨테이너 안에 글자가 너무 많을때 처리방법
Container(
child: Center(
child: Text(
"엄청엄청 긴 글",
overflow: TextOverflow.ellipsis,
),
),
Flutter - Wrap text on overflow, like insert ellipsis or fade
I'm trying to create a line in which center text has a maximum size, and if the text content is too large, it fits in size. I insert the TextOverflow.ellipsis property to shorten the text and inse...
stackoverflow.com
728x90