ImagePickerTheme constructor

const ImagePickerTheme(
  1. {Color iconColor = Colors.black,
  2. double iconSize = 125,
  3. double spaceBetweenIcons = 30,
  4. Widget? makePhotoIcon,
  5. String makePhotoText = 'Take a Picture',
  6. Widget? selectImageIcon,
  7. String selectImageText = 'Select File',
  8. TextStyle? iconTextStyle,
  9. Widget closeButtonBuilder(
    1. Function onTap
    )?}
)

The ImagePickerTheme is used to style the ImagePicker.

Implementation

const ImagePickerTheme({
  this.iconColor = Colors.black,
  this.iconSize = 125,
  this.spaceBetweenIcons = 30,
  this.makePhotoIcon,
  this.makePhotoText = 'Take a Picture',
  this.selectImageIcon,
  this.selectImageText = 'Select File',
  this.iconTextStyle,
  this.closeButtonBuilder,
});