CLInputGroup<T> constructor
const
CLInputGroup<T> ({
- Key? key,
- required T? selected,
- required List<
CLInputGroupItem< items,T> > - required TextEditingController controller,
- ValueChanged<
T?> ? onChanged, - FocusNode? focusNode,
- String? hintText,
- TextInputType? keyboardType,
- bool enabled = true,
- double? dropdownWidth,
- bool hasError = false,
- ValueChanged<
String> ? onTextChanged, - ValueChanged<
String> ? onSubmitted,
Implementation
const CLInputGroup({
super.key,
required this.selected,
required this.items,
required this.controller,
this.onChanged,
this.focusNode,
this.hintText,
this.keyboardType,
this.enabled = true,
this.dropdownWidth,
this.hasError = false,
this.onTextChanged,
this.onSubmitted,
});