- Fix: Display the icon in menu button when having submenu
- Add topics to pubspec.yaml
- Update example to feature menu/submenu customization (via
MenuStyle
inMenuThemeData
inThemeData
)
-
BREAKING: Renamed class
MenuBar
toMenuBarWidget
. Now you don't need to writeimport 'package:flutter/material.dart' hide MenuBar hide MenuStyle
in your Material package import -
BREAKING: Removed class
BarStyle
to style the bar itself; use classMenuStyle
from Flutter instead -
BREAKING: Removed class
BarButtonStyle
to style the bar buttons; use classButtonStyle
from Flutter instead -
BREAKING: Removed class
MenuButtonStyle
to style the menu/submenu buttons; use classButtonStyle
from Flutter instead -
BREAKING: Removed custom class
MenuStyle
to style the menus/submenus -
Shortcuts are now supported in a
MenuButton
. For example:shortcut: const SingleActivator(LogicalKeyboardKey.keyS, control: true),
-
Rewrite to use the native
MenuBar
,MenuStyle
andButtonStyle
from Flutter
- Update README
- Fix breaking: Conflict between MenuBar and MenuStyle in material package
- Update: README.md for contact info
- Change: Menu bar button onTap to onTapDown
- Fix: Docs using old widget names
- Rename: BarMenuButton to BarButton
- Rename: MenuBarSubMenu to SubMenu
- Update: README.md
- Update screenshots
- Initial version.