Manki Kim
Manki Kim
@Akshay-akkay If the column width of the basic body area is less than 200, the column frozen menu is disabled.
Valid only when `PlutoMenuBar.mode` is `PlutoMenuBarMode.tap`. This is a function prior to the addition of `PlutoMenuBarMode.hover` mode and should be applied in hover mode as well. We will add it...
Same issue, answered by https://github.com/bosskmk/pluto_grid/issues/624.
I'm thinking of adding that feature, but it's stuck at the priority of other tasks.
@integraodessa PlutoMenuBar 2.0.0 has been released. When running in mouse hover mode, a sub-menu is opened near the upper menu.
Updated PlutoMenuBar 1.1.3 version. You can add Divider like below. ```dart PlutoMenuItem.divider(height: 10), ```
I can't tell what kind of error it is just by looking at your error. Can you attach the minimum source code to reproduce the error?
I will be sure to update this in the next version. thank you
Updated to version 3.0.0 of PlutoMenuBar. change log https://pub.dev/packages/pluto_menu_bar/changelog#300---2022-11-30 demo web link https://weblaze.dev/pluto_menu_bar/build/web/#/ demo source code https://github.com/bosskmk/pluto_menu_bar/blob/master/example/lib/main.dart
@KamilSvoboda https://pluto.weblaze.dev/the-case-of-assigning-the-id-of-plutomenuitem If `PlutoMenuItem` is created in the `build` method, it seems to be a problem because `PlutoMenuItem.key` changes from build to build. Try creating `PlutoMenuItem` in `initState` or setting...