Appearance
Dropdown Button #
A representation of Menu.
NikuDropDownButton
accepts all the props as same as DropDownButton.
// Using namespace
n.DropDownButton<T>(state);
// Using Niku Prefix
NikuDismissible<T>(state);
Example Usage #
final options = ["Mountain", "Ocean", "Star"];
n.DropdownButton<String>(option.value)
..itemsValue = options
..onChanged = updateNewValue;