AppDropdownField constructor
const
AppDropdownField({
- Key? key,
- String? title,
- TextStyle? titleTextStyle,
- String? hintText,
- Color? color,
- Color? borderColor,
- Color? fillColor,
- Color? focusColor,
- required List<
String> items, - String? selectedItem,
- dynamic onChanged()?,
- String? validator()?,
- bool? enabled,
- Widget? suffixIcon,
- AutovalidateMode autovalidateMode = AutovalidateMode.disabled,
Implementation
const AppDropdownField({
Key? key,
this.title,
this.titleTextStyle,
this.hintText,
this.color,
this.borderColor,
this.fillColor,
this.focusColor,
required this.items,
this.selectedItem,
this.onChanged,
this.validator,
this.enabled,
this.suffixIcon,
this.autovalidateMode = AutovalidateMode.disabled,
}) : super(key: key);