MaikuB / flutter_appauth

A Flutter wrapper for AppAuth iOS and Android SDKs
274 stars 246 forks source link

Language support #499

Open PandukaBWedisinghe opened 5 months ago

PandukaBWedisinghe commented 5 months ago

My flutter app supports few locales and I want to show the login page with the device locale. For instance, if the device language is Arabic, the login view should be in Arabic. How to configure this?

eeevvaaa commented 3 months ago

Have you tried passing an additional parameter called ui_locales? You can set it using the device's locale, like this:

additionalParameters: {
    'ui_locales': Platform.localeName,
}