changeLocale method

void changeLocale(
  1. String newLocale
)

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
  });
}