Rich text editor for Flutter
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

1.0 KiB

🌍 Localizations Setup

In addition to the required delegates mentioned above in Using custom app widget, which are:

localizationsDelegates: const [
    DefaultCupertinoLocalizations.delegate,
    DefaultMaterialLocalizations.delegate,
    DefaultWidgetsLocalizations.delegate,
],

Which are used by Flutter widgets.

📌 Note: The library also needs the FlutterQuillLocalizations.delegate:

// Required localizations delegates ...
FlutterQuillLocalizations.delegate

You don't have to add this explicitly because we have wrapped the QuillEditor and QuillToolbar with FlutterQuillLocalizationsWidget. This widget will check if the necessary localizations are set; if not, it will provide them only for these widgets. Therefore, it's not strictly required. However, if you are overriding the localizationsDelegates, you can also add the FlutterQuillLocalizations.delegate.

📄 For additional notes, refer to the Translation section.