comboBox abstract method

Widget comboBox({
  1. String label,
  2. List<String> values,
  3. void onValueChanged(
    1. String
    ),
  4. String? value,
  5. String? helpText,
  6. double? width,
  7. ItemSize size = ItemSize.medium,
  8. LabelPosition labelPosition = LabelPosition.top,
  9. bool hasAutocomplete = true,
  10. bool quiet = false,
  11. bool error = false,
  12. bool disabled = false,
  13. 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,
});