I18nTextEditor constructor

const I18nTextEditor({
  1. String inputHintText = 'Enter text',
  2. String bottomNavigationBarText = 'Text',
  3. String back = 'Back',
  4. String done = 'Done',
  5. String textAlign = 'Align text',
  6. String fontScale = 'Font scale',
  7. String backgroundMode = 'Background mode',
  8. String smallScreenMoreTooltip = 'More',
})

Creates an instance of I18nTextEditor with customizable internationalization settings.

You can provide translations and messages for various components of the Text Editor in the Image Editor. Customize the text for input fields, buttons, and settings to suit your application's language and style.

Example:

I18nTextEditor(
  inputHintText: 'Type your text here',
  bottomNavigationBarText: 'Text',
  done: 'Save',
  back: 'Go Back',
  textAlign: 'Text Alignment',
  backgroundMode: 'Background Mode',
)

Implementation

const I18nTextEditor({
  this.inputHintText = 'Enter text',
  this.bottomNavigationBarText = 'Text',
  this.back = 'Back',
  this.done = 'Done',
  this.textAlign = 'Align text',
  this.fontScale = 'Font scale',
  this.backgroundMode = 'Background mode',
  this.smallScreenMoreTooltip = 'More',
});