RDropdownOverrides constructor

const RDropdownOverrides({
  1. TextStyle? triggerTextStyle,
  2. Color? triggerForegroundColor,
  3. Color? triggerBackgroundColor,
  4. Color? triggerBorderColor,
  5. EdgeInsetsGeometry? triggerPadding,
  6. Size? triggerMinSize,
  7. BorderRadius? triggerBorderRadius,
  8. Color? triggerIconColor,
  9. Color? menuBackgroundColor,
  10. Color? menuBorderColor,
  11. BorderRadius? menuBorderRadius,
  12. double? menuElevation,
  13. double? menuMaxHeight,
  14. EdgeInsetsGeometry? menuPadding,
  15. TextStyle? itemTextStyle,
  16. EdgeInsetsGeometry? itemPadding,
  17. double? itemMinHeight,
})

Implementation

const RDropdownOverrides({
  // Trigger
  this.triggerTextStyle,
  this.triggerForegroundColor,
  this.triggerBackgroundColor,
  this.triggerBorderColor,
  this.triggerPadding,
  this.triggerMinSize,
  this.triggerBorderRadius,
  this.triggerIconColor,
  // Menu
  this.menuBackgroundColor,
  this.menuBorderColor,
  this.menuBorderRadius,
  this.menuElevation,
  this.menuMaxHeight,
  this.menuPadding,
  // Item
  this.itemTextStyle,
  this.itemPadding,
  this.itemMinHeight,
});