How to enable per-app language preferences for Flutter android 13 app?

Viewed 98
1 Answers

It seems like Flutter does not support this yet, there's an open issue in the code repository about it, in case you want to look.

But, if you really need to add this feature, you can do it manually by adding the configurations in the android project. You can do this by following instructions here. In summarizing, you have to create a new XML file, add a localeConfig tag to your app manifest, and declare supported locales in build.gradle of your app.

Related