PickerThemeData constructor

const PickerThemeData({
  1. Color? bottomSheetBackgroundColor,
  2. Color? bottomSheetIndicatorColor,
  3. Color? tabEnableColor,
  4. Color? tabDisableColor,
  5. TextStyle? doneTextStyle,
  6. TextStyle? cancelTextStyle,
  7. ButtonStyle? cancelButtonStyle,
  8. ButtonStyle? doneButtonStyle,
  9. double? borderRadius,
  10. Color? tabBorderColor,
})

Creates a theme for the media picker widget.

All parameters are optional and will fall back to default theme values when not specified.

Implementation

const PickerThemeData({
  this.bottomSheetBackgroundColor,
  this.bottomSheetIndicatorColor,
  this.tabEnableColor,
  this.tabDisableColor,
  this.doneTextStyle,
  this.cancelTextStyle,
  this.cancelButtonStyle,
  this.doneButtonStyle,
  this.borderRadius,
  this.tabBorderColor,
});