how to make easy localization button to switch languages in the application? – Flutter
I'm using easy Localization Package in 2 languages Application ,,And I Need To swith langauge using a Button . How could i Do That? await EasyLocalization.ensureInitialized(); log(token); runApp( EasyLocalization( supportedLocales: const [Locale('ar'), Locale('en')], path: 'assets/translations', startLocale: const Locale('ar'), fallbackLocale: const…