컨테이너 안에 글자가 너무 많을때 처리방법
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
'Flutter' 카테고리의 다른 글
[Flutter] 함수형프로그래밍 List of Maps VS Map of Maps 데이터 접근 (0) | 2023.01.16 |
---|---|
[Flutter] ReorderableListView (0) | 2023.01.13 |
[Flutter] flutter listtile remove padding (0) | 2023.01.10 |
[Flutter] 리스트와 매칭되는 bool 리스트 만들기 (0) | 2022.12.22 |
[Flutter / Error] Locale data has not been initialized, call initializeDateFormatting(<locale>). (0) | 2022.12.15 |