Reputation: 61
I changed app title with the below code in Android Manifest.xml, but I can't change the app name on the multi-tasking screen.
<application
android:label="WCC"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
Upvotes: 1
Views: 93
Reputation: 723
Change the title in MaterialApp
.
MaterialApp(title: appName);
In your case it should be
MaterialApp(title: "Flutter Demo");
Upvotes: 2