I want to change the name of my App depending on the language of the user's device.
I know that app's name is located in AndroidManifest.xml:
<application
android:name="io.flutter.app.FlutterApplication"
android:label="Flutter_app_name"
android:icon="@mipmap/ic_launcher">
But i don't know how to change android:label dinamically.
Can you help me? Thanks!