Select
Dropdown selection component.
Basic Usage
dart
1
2
3
4
5
6
7
8
DSelect(
placeholder: 'Select an option',
options: [
DSelectOption(label: 'Option 1', value: 'opt1'),
DSelectOption(label: 'Option 2', value: 'opt2'),
DSelectOption(label: 'Option 3', value: 'opt3'),
],
)