|
@@ -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),
|