Skilling-Kiss
Results
2
issues of
Skilling-Kiss
flutter sdk:3.16.3 dart:3.2.3 使用localization及intl 当前版本回调中的_locale包含languageCode及countryCode(ex:'zh_CN') 而supportedLocales只包含languageCode(ex:'zh') 所以supportedLocales.contains(_locale)永远会返回false 更改后的代码应该类似这样 因为使用这个回调实际上没有跟随系统这一功能,而是固定只能选择所提供的语言 ```dart localeResolutionCallback: (locale, supportedLocales) { if (controller.locale == null) { if (locale != null && supportedLocales.contains(Locale(locale.languageCode))) { controller.locale = locale; }...