본문 바로가기
Flutter/code

[플러터] Flutter Text overflow

by 차누감 2021. 10. 8.
overflow: TextOverflow.ellipsis,

            SizedBox(
              width: 100.0,
              child: Padding(
                padding: EdgeInsets.all(8.0),
                child: Text(
                  '123456789123456789123456789123456789123456789123456789',
                  overflow: TextOverflow.ellipsis,
                ),
              ),
            ),

 

댓글