PickerDecoration constructor

PickerDecoration({
  1. ActionBarPosition actionBarPosition = ActionBarPosition.top,
  2. Widget? cancelIcon,
  3. int columnCount = 3,
  4. double blurStrength = 10,
  5. TextStyle? albumTitleStyle,
  6. String completeText = 'Continue',
  7. TextStyle? completeTextStyle,
  8. ButtonStyle? completeButtonStyle,
  9. Widget? loadingWidget,
  10. TextStyle? albumTextStyle,
  11. TextStyle? albumCountTextStyle,
})

PickerDecoration constructor to be used for decorating the UI

Implementation

PickerDecoration({
  this.actionBarPosition = ActionBarPosition.top,
  this.cancelIcon,
  this.columnCount = 3,
  this.blurStrength = 10,
  this.albumTitleStyle,
  this.completeText = 'Continue',
  this.completeTextStyle,
  this.completeButtonStyle,
  this.loadingWidget,
  this.albumTextStyle,
  this.albumCountTextStyle,
});