Open PandukaBWedisinghe opened 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?
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, }
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?