Dropdown
Advanced dropdown menu with search and grouping.
Installation
bash
bricolage_ui add dropdownbash
flutter pub add bricolage_uiUsage
dart
CustomDropdown(
items: dropdownItems,
onSelected: (item) {
print('Selected: $item');
},
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
items | List | required | Dropdown items |
onSelected | Function | null | Callback when item is selected |
