PictureUploadButtonStyle constructor

PictureUploadButtonStyle({
  1. IconData iconData = CupertinoIcons.photo_camera,
  2. double iconSize = 40.0,
  3. Color backgroundColor = CupertinoColors.systemBlue,
  4. double width = 80,
  5. double height = 100,
  6. Color fontColor = CupertinoColors.white,
  7. double fontSize = 14.0,
  8. double radius = 8,
  9. Color closeIconColor = CupertinoColors.systemBlue,
  10. Color closeIconBackgroundColor = CupertinoColors.lightBackgroundGray,
})

Style options for PictureUploadWidget

Implementation

PictureUploadButtonStyle({
  this.iconData = CupertinoIcons.photo_camera,
  this.iconSize = 40.0,
  this.backgroundColor = CupertinoColors.systemBlue,
  this.width = 80,
  this.height = 100,
  this.fontColor = CupertinoColors.white,
  this.fontSize = 14.0,
  this.radius = 8,
  this.closeIconColor = CupertinoColors.systemBlue,
  this.closeIconBackgroundColor = CupertinoColors.lightBackgroundGray,
});