changeLocale method
Implementation
void changeLocale(String newLocale) async {
  await T.load(newLocale); // Load the translation for the new language
  setState(() {
    currentLocale = newLocale; // Update the language for the UI
  });
}void changeLocale(String newLocale) async {
  await T.load(newLocale); // Load the translation for the new language
  setState(() {
    currentLocale = newLocale; // Update the language for the UI
  });
}