The project uses some adaptive widgets like AdaptiveTextSelectionToolbar
which require the following delegates:
- Default Material Localizations delegate
- Default Cupertino Localizations delegate
- Default Widgets Localizations delegate
You don't need to include these since they are defined by default. However, if you are using a custom app or overriding the localizationsDelegates
in the App widget, ensure it includes the following:
localizationsDelegates: const [
DefaultCupertinoLocalizations.delegate,
DefaultMaterialLocalizations.delegate,
DefaultWidgetsLocalizations.delegate,
],
📄 For additional notes, see the localizations setup page.