comboBox abstract method
Widget
comboBox({
- String label,
- List<
String> values, - void onValueChanged(),
- String? value,
- String? helpText,
- double? width,
- ItemSize size = ItemSize.medium,
- LabelPosition labelPosition = LabelPosition.top,
- bool hasAutocomplete = true,
- bool quiet = false,
- bool error = false,
- bool disabled = false,
- bool readOnly = false,
Implementation
Widget comboBox({
String label,
List<String> values,
void Function(String) onValueChanged,
String? value,
String? helpText,
double? width,
ItemSize size = ItemSize.medium,
LabelPosition labelPosition = LabelPosition.top,
bool hasAutocomplete = true,
bool quiet = false,
bool error = false,
bool disabled = false,
bool readOnly = false,
});