diff --git a/lib/src/easy_localization_controller.dart b/lib/src/easy_localization_controller.dart index 494c344b..c596cfa7 100644 --- a/lib/src/easy_localization_controller.dart +++ b/lib/src/easy_localization_controller.dart @@ -42,7 +42,7 @@ class EasyLocalizationController extends ChangeNotifier { _supportedLocales = supportedLocales; if (forceLocale != null) { _locale = forceLocale; - } else if (_savedLocale == null && startLocale != null) { + } else if ((!saveLocale || _savedLocale == null) && startLocale != null) { _locale = _getFallbackLocale(supportedLocales, startLocale); EasyLocalization.logger('Start locale loaded ${_locale.toString()}'); }