How to change the app display name build with flutter?

后端 未结 11 570
轻奢々
轻奢々 2020-12-12 12:08

I have created the app using flutter create testapp. Now, I want to change the App name from \"testapp\" to \"My Trips Tracker\". How can I do that ?

I have tried ch

11条回答
  •  醉话见心
    2020-12-12 12:29

    You can change it in iOS without opening Xcode by editing the project/ios/Runner/info.plist CFBundleDisplayName to the String that you want as your name. For android, Change the app name from Android folder, in the AndroidManifest.xml file, android/app/src/main let the android label refer to the name you prefer for eg.

    
    
    

提交回复
热议问题