Closed2
TextOverflow.ellipsis が効かない

TextOverflow.ellipsis
を指定しているが、テキストがはみ出す
Text(
user.name,
style: theme.textTheme.h80.bold(),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),

Textの親WidgetをExpanded
でWrapしたら解決した。
このスクラップは2022/09/05にクローズされました