I just wanted to inform you that there is something missing on this doc: https://help.syncfusion.com/flutter/calendar/localization
the doc says:
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
]
but the Cupertino Localization is definitely needed:
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
]
then later with SfGlobalLocalizations.delegate, too.
I just wanted to inform you that there is something missing on this doc: https://help.syncfusion.com/flutter/calendar/localization
the doc says:
but the Cupertino Localization is definitely needed:
then later with
SfGlobalLocalizations.delegate,too.