From 4d7498d9406aa4e3ec5b120b5f9f4bca4751a504 Mon Sep 17 00:00:00 2001 From: goldfest228 Date: Fri, 20 Dec 2024 19:48:12 +0400 Subject: [PATCH] lab7 --- lib/presentation/locale_bloc/locale_bloc.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/presentation/locale_bloc/locale_bloc.dart b/lib/presentation/locale_bloc/locale_bloc.dart index 19ee4e2..fbb4656 100644 --- a/lib/presentation/locale_bloc/locale_bloc.dart +++ b/lib/presentation/locale_bloc/locale_bloc.dart @@ -13,5 +13,6 @@ class LocaleBloc extends Bloc { final toChange = AppLocale.supportedLocales .firstWhere((e) => e.languageCode != state.currentLocale.languageCode); emit(state.copyWith(currentLocale: toChange)); + } }