AurisSelect<T> constructor

const AurisSelect<T>({
  1. Key? key,
  2. required List<AurisSelectOption<T>> options,
  3. required T? value,
  4. required ValueChanged<T>? onChanged,
  5. String placeholder = 'SELECT',
  6. double? width,
  7. 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,
});