Skip to content

Commit

Permalink
fix: display
Browse files Browse the repository at this point in the history
  • Loading branch information
atnanahidiw committed Nov 10, 2023
1 parent d7cbc7e commit f2a5f39
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ class _MaterialMenuState extends State<MaterialMenu> {
return Container(
constraints: const BoxConstraints(
minWidth: 100,
maxWidth: 120,
maxWidth: 130,
),
child: Button(
buttonType: filterIndex == index ? ButtonType.primary : null,
text: text,
fontSize: 24,
fontSize: 14,
innerVerticalPadding: 12,
onTap: () {
setState(() {
Expand Down Expand Up @@ -89,9 +89,7 @@ class _MaterialMenuState extends State<MaterialMenu> {
width: 10,
),
Expanded(
child: Flexible(
child: Text(title),
),
child: Text(title),
),
if (isPrintable)
IconButton(
Expand Down

0 comments on commit f2a5f39

Please sign in to comment.