AuiDropdown<T>.filled constructor

const AuiDropdown<T>.filled({
  1. Key? key,
  2. required List<AuiDropdownItem<T>> items,
  3. required ValueChanged<T?>? onChanged,
  4. T? value,
  5. String? hint,
  6. String? label,
  7. String? error,
  8. bool disabled = false,
  9. double? borderRadius,
})

Creates a filled AuiDropdown.

The fill color is ColorScheme.surfaceContainerHighest.

Implementation

const AuiDropdown.filled({
  super.key,
  required this.items,
  required this.onChanged,
  this.value,
  this.hint,
  this.label,
  this.error,
  this.disabled = false,
  this.borderRadius,
}) : _variant = _AuiDropdownVariant.filled;