changeLocale method

Future<void> changeLocale(
  1. String newLocale
)

Implementation

Future<void> changeLocale(String newLocale) async {
  final prefs = await SharedPreferences.getInstance();
  _locale = newLocale;
  await prefs.setString(
      'locale', newLocale); // حفظ اللغة في SharedPreferences
  notifyListeners(); // Notify listeners after changing the locale
}