AurisSelect<T> constructor
const
AurisSelect<T> ({
- Key? key,
- required List<
AurisSelectOption< options,T> > - required T? value,
- required ValueChanged<
T> ? onChanged, - String placeholder = 'SELECT',
- double? width,
- FocusNode? focusNode,
Creates a custom select.
Implementation
const AurisSelect({
super.key,
required this.options,
required this.value,
required this.onChanged,
this.placeholder = 'SELECT',
this.width,
this.focusNode,
});