fix: clip the text when out of bound

This commit is contained in:
appflowy 2022-08-25 10:00:54 +08:00
parent 0d39afca2f
commit befc40ba71

View File

@ -91,8 +91,13 @@ class SelectOptionTag extends StatelessWidget {
Widget build(BuildContext context) {
return ChoiceChip(
pressElevation: 1,
label:
FlowyText.medium(name, fontSize: 12, overflow: TextOverflow.ellipsis),
label: Flexible(
child: FlowyText.medium(
name,
fontSize: 12,
overflow: TextOverflow.clip,
),
),
selectedColor: color,
backgroundColor: color,
labelPadding: const EdgeInsets.symmetric(horizontal: 6),