changeLocale method
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
}