Hi@akhtar,
If you want to change the name of the app which is displayed on the menu of the mobile phone together with the app icon, you have to change the android: label in the android/app/src/main/AndroidManifest.xml file. In this file, you can find the below code.
<application
android:name="io.flutter.app.FlutterApplication"
android:label="New Name"
android:icon="@mipmap/ic_launcher">
Replace the new name and restart your app. It will work.
To know more about Flutter, join our Flutter Course today.