AdeptDropDownTheme constructor

AdeptDropDownTheme({
  1. TextStyle? labelTextStyle,
  2. TextStyle? hintTextStyle,
  3. TextStyle? valueTextStyle,
  4. EdgeInsets labelPadding = const EdgeInsets.only(bottom: 5),
  5. bool isSearch = true,
  6. BoxDecoration? boxDecoration,
  7. EdgeInsets fieldPadding = const EdgeInsets.only(left: 10, right: 10, top: 10),
  8. Widget? suffixWidget,
  9. CardThemeData? cardTheme,
  10. AdeptTextFieldTheme? searchBoxTheme,
  11. TextStyle? itemTextStyle,
  12. double height = 45,
  13. bool isClose = true,
  14. Color? multiSelectItemBgColor,
})

AdeptDropDownTheme Constructor allows you to define styling and value properties.

Implementation

AdeptDropDownTheme(
    {super.labelTextStyle,
    super.hintTextStyle,
    super.valueTextStyle,
    super.labelPadding,
    this.isSearch = true,
    this.boxDecoration,
    super.fieldPadding,
    this.suffixWidget,
    this.cardTheme,
    this.searchBoxTheme,
    this.itemTextStyle,
    this.height = 45,
    this.isClose = true,
    this.multiSelectItemBgColor});