MKmanki kiminpluto.weblaze.dev·Nov 30, 2022 · 1 min readThe case of assigning the id of PlutoMenuItem.A unique id can be set for PlutoMenuItem. PlutoMenuItem( id: 'unique_id', title: 'Menu 1', ) If PlutoMenuItem is created in build method, you should set a unique id for PlutoMenuItem.Otherwise, when PlutoMenuBar is rebuilt, incorrect actions suc...00
MKmanki kiminpluto.weblaze.dev·Nov 29, 2022 · 1 min readScrollbar and Scroll BehaviorThe default ScrollBehavior.dragDevices of PlutoGrid is as follows.(dragDevices is a setting that allows scrolling by dragging to the set pointer type.) // In case of Mobile { PointerDeviceKind.touch, PointerDeviceKind.stylus, PointerDeviceKind....00
MKmanki kiminpluto.weblaze.dev·Nov 24, 2022 · 2 min readPlutoMenuItemWidgetExample code to add custom widget to PlutoMenuBar. One thing to note is that if a custom widget has a state change, such as the Slider in the example below, the state change must be handled by the custom widget. In the example below, if you call setS...00
MKmanki kiminpluto.weblaze.dev·Nov 4, 2022 · 3 min readShortcutsPlutoGrid has default shortcut keys set, and users can change or set shortcut keys. Shortcut Range The scope of the shortcut depends on the focus. PlutoGrid : In the state that TextField is not focused. You can set custom shortcut keys. TextField :...00
MKmanki kiminpluto.weblaze.dev·Nov 4, 2022 · 5 min readIntroduction to PlutoLayoutPlutoLayout is a Flutter package for configuring layouts such as CMS or admin service.You can configure tab views or menus on the top, bottom, left, and right sides.It also supports keyboard shortcuts and allows you to toggle or resize the tab view. ...00