AndroidUiSettings constructor

AndroidUiSettings({
  1. String? toolbarTitle,
  2. Color? toolbarColor,
  3. @Deprecated("This property is deprecated and no longer in use. Please use 'statusBarLight' instead.") Color? statusBarColor,
  4. bool? statusBarLight,
  5. bool? navBarLight,
  6. Color? toolbarWidgetColor,
  7. Color? backgroundColor,
  8. Color? activeControlsWidgetColor,
  9. Color? dimmedLayerColor,
  10. Color? cropFrameColor,
  11. Color? cropGridColor,
  12. int? cropFrameStrokeWidth,
  13. int? cropGridRowCount,
  14. int? cropGridColumnCount,
  15. int? cropGridStrokeWidth,
  16. bool? showCropGrid,
  17. bool? lockAspectRatio,
  18. bool? hideBottomControls,
  19. CropAspectRatioPresetData? initAspectRatio,
  20. CropStyle cropStyle = CropStyle.rectangle,
  21. List<CropAspectRatioPresetData> aspectRatioPresets = const [CropAspectRatioPreset.original, CropAspectRatioPreset.square, CropAspectRatioPreset.ratio3x2, CropAspectRatioPreset.ratio4x3, CropAspectRatioPreset.ratio16x9],
})

Implementation

AndroidUiSettings({
  this.toolbarTitle,
  this.toolbarColor,
  @Deprecated(
      "This property is deprecated and no longer in use. Please use 'statusBarLight' instead.")
  this.statusBarColor,
  this.statusBarLight,
  this.navBarLight,
  this.toolbarWidgetColor,
  this.backgroundColor,
  this.activeControlsWidgetColor,
  this.dimmedLayerColor,
  this.cropFrameColor,
  this.cropGridColor,
  this.cropFrameStrokeWidth,
  this.cropGridRowCount,
  this.cropGridColumnCount,
  this.cropGridStrokeWidth,
  this.showCropGrid,
  this.lockAspectRatio,
  this.hideBottomControls,
  this.initAspectRatio,
  this.cropStyle = CropStyle.rectangle,
  this.aspectRatioPresets = const [
    CropAspectRatioPreset.original,
    CropAspectRatioPreset.square,
    CropAspectRatioPreset.ratio3x2,
    CropAspectRatioPreset.ratio4x3,
    CropAspectRatioPreset.ratio16x9
  ],
});