I18nCropRotateEditor constructor

const I18nCropRotateEditor({
  1. String bottomNavigationBarText = 'Crop/ Rotate',
  2. String rotate = 'Rotate',
  3. String flip = 'Flip',
  4. String ratio = 'Ratio',
  5. String back = 'Back',
  6. String done = 'Done',
  7. String cancel = 'Cancel',
  8. String undo = 'Undo',
  9. String redo = 'Redo',
  10. String smallScreenMoreTooltip = 'More',
  11. String reset = 'Reset',
})

Creates an instance of I18nCropRotateEditor with customizable internationalization settings.

You can provide translations and messages for various components of the Crop and Rotate Editor in the Image Editor. Customize the text for buttons, options, and messages to suit your application's language and style.

Example:

I18nCropRotateEditor(
  bottomNavigationBarText: 'Crop & Rotate',
  rotate: 'Rotate',
  ratio: 'Ratio',
  back: 'Back',
  done: 'Done',
)

Implementation

const I18nCropRotateEditor({
  this.bottomNavigationBarText = 'Crop/ Rotate',
  this.rotate = 'Rotate',
  this.flip = 'Flip',
  this.ratio = 'Ratio',
  this.back = 'Back',
  this.done = 'Done',
  this.cancel = 'Cancel',
  this.undo = 'Undo',
  this.redo = 'Redo',
  this.smallScreenMoreTooltip = 'More',
  this.reset = 'Reset',
});