Skip to content

Commit

Permalink
fix large menu button color bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenrats committed Jul 8, 2024
1 parent 6ab25b1 commit 8281c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/jfx_nav_bar_buttons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class JfxNavBarMenuButtonLargeState extends State<JfxNavBarMenuButtonLarge> {
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 10.0, vertical: 5.0),
child: Material(
color: widget.selected
color: widget.selected || menuOpen
? Theme.of(context).colorScheme.primary.withOpacity(0.3)
: Colors.white.withOpacity(0.05),
borderRadius: BorderRadius.circular(15),
Expand Down

0 comments on commit 8281c27

Please sign in to comment.