MephistoDropDown constructor
const
MephistoDropDown({ - Key? key,
- required String label,
- required String placeholder,
- required Function onTap,
- required List<DropDownItem> dropdownItems,
- String? initialValue,
- TextEditingController? controller,
- Widget? icon,
- bool? isBold = true,
- bool? isSmall = false,
})
Implementation
const MephistoDropDown(
{super.key,
required this.label,
required this.placeholder,
required this.onTap,
required this.dropdownItems,
this.initialValue,
this.controller,
this.icon,
this.isBold = true,
this.isSmall = false});