SuffaCombobox constructor
const
SuffaCombobox({
- Key? key,
- required List<
String> itemList, - required dynamic onItemSelect(
- String type
- Color? bgColor,
- Color? textColor,
- TextStyle? textFont,
- Color? optionBgColor,
- Color? optionHeaderTextColor,
- Color? optionTextColor,
- TextStyle? optionTextFont,
- required String optionHeaderText,
- double? width,
- bool? willThereBeABg,
- int? initialIndex,
- Color? containerBgColor,
- double? height,
Implementation
const SuffaCombobox(
{super.key,
required this.itemList,
required this.onItemSelect,
this.bgColor,
this.textColor,
this.textFont,
this.optionBgColor,
this.optionHeaderTextColor,
this.optionTextColor,
this.optionTextFont,
required this.optionHeaderText,
this.width,
this.willThereBeABg,
this.initialIndex,
this.containerBgColor,
this.height});