NativeSelectProps constructor
const
NativeSelectProps({
- required List<
NativeSelectOptionProps> options, - String? value,
- String? placeholder,
- ComponentSize size = ComponentSize.md,
- bool disabled = false,
- bool required = false,
- String? name,
- String? id,
- String? label,
- String? error,
- bool fullWidth = false,
- void onChange()?,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Implementation
const NativeSelectProps({
required this.options,
this.value,
this.placeholder,
this.size = ComponentSize.md,
this.disabled = false,
this.required = false,
this.name,
this.id,
this.label,
this.error,
this.fullWidth = false,
this.onChange,
this.styles,
this.decoration,
});