PickerDecoration constructor

PickerDecoration({
  1. ActionBarPosition actionBarPosition = ActionBarPosition.top,
  2. Widget? cancelIcon,
  3. int columnCount = 3,
  4. double blurStrength = 10,
  5. double scaleAmount = 1.2,
  6. TextStyle? albumTitleStyle,
  7. String completeText = 'Continue',
  8. TextStyle? completeTextStyle,
  9. ButtonStyle? completeButtonStyle,
  10. Widget? loadingWidget,
  11. TextStyle? albumTextStyle,
  12. TextStyle? albumCountTextStyle,
  13. String? noMedia,
  14. dynamic videoDurationBuilder(
    1. BuildContext context,
    2. String? duration
    )?,
  15. dynamic counterBuilder(
    1. BuildContext context,
    2. int? index
    )?,
  16. Color selectedColor = Colors.black26,
})

PickerDecoration constructor to be used for decorating the UI

Implementation

PickerDecoration({
  this.actionBarPosition = ActionBarPosition.top,
  this.cancelIcon,
  this.columnCount = 3,
  this.blurStrength = 10,
  this.scaleAmount = 1.2,
  this.albumTitleStyle,
  this.completeText = 'Continue',
  this.completeTextStyle,
  this.completeButtonStyle,
  this.loadingWidget,
  this.albumTextStyle,
  this.albumCountTextStyle,
  this.noMedia,
  this.videoDurationBuilder,
  this.counterBuilder,
  this.selectedColor = Colors.black26,
});