Yooni
Yooni

Reputation: 61

How to change Muti-Task Page Title in Flutter

enter image description here

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

Answers (1)

Sugan Pandurengan
Sugan Pandurengan

Reputation: 723

Change the title in MaterialApp.

MaterialApp(title: appName);

In your case it should be

MaterialApp(title: "Flutter Demo");

Upvotes: 2

Related Questions