mk_drop_down_menu 1.0.3 copy "mk_drop_down_menu: ^1.0.3" to clipboard
mk_drop_down_menu: ^1.0.3 copied to clipboard

outdated

Tap a widget wrapped with MKDropDownMenu to show a drop down menu. The header and menu are completely customizable.

MKDropDownMenu #

Tap a widget wrapped with MKDropDownMenu to show a drop down menu. The header and menu are completely customizable.

Features #

  • Completely Customizable: Header and Menu.
  • Auto show below the Header Widget.
  • Using Controller to build complex Menu.

Demo #

Usage #

Basic #

MKDropDownMenu(
  headerBuilder: (bool menuIsShowing) {
    
  },
  menuBuilder: () {
    
  },
)

Complex #

class CustomDropDownMenuController extends MKDropDownMenuController {
  int curSelectedIndex = 0;
}

MKDropDownMenu<CustomDropDownMenuController>(
  controller: CustomDropDownMenuController(),
  headerBuilder: (bool menuIsShowing) {
    
  },
  menuBuilder: () {
    
  },
),
6
likes
0
pub points
14%
popularity

Publisher

verified publishermalikwang.com

Tap a widget wrapped with MKDropDownMenu to show a drop down menu. The header and menu are completely customizable.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mk_drop_down_menu