StringKnobWidget constructor

const StringKnobWidget({
  1. Key? key,
  2. required String label,
  3. required String? description,
  4. required String value,
  5. required bool enabled,
  6. required bool nullable,
})

A knob widget that allows the user to edit a string value.

The knob is displayed as a TextFormField.

See also:

Implementation

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