SelectKnobWidget<T> constructor

const SelectKnobWidget<T>({
  1. Key? key,
  2. required String label,
  3. required String? description,
  4. required List<Option<T>> values,
  5. required T value,
  6. required bool nullable,
  7. required bool enabled,
})

A knob widget that allows the user to select a value from a list of options.

The knob is displayed as a dropdown menu.

See also:

Implementation

const SelectKnobWidget({
  super.key,
  required this.label,
  required this.description,
  required this.values,
  required this.value,
  required this.nullable,
  required this.enabled,
});