How to change the app display name build with flutter?

后端 未结 11 564
轻奢々
轻奢々 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:36

    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.

    FWIW - I was getting frustrated with making changes in Xcode and Flutter, so I started committing all changes before opening Xcode, so I could see where the changes show up in the Flutter project.

提交回复
热议问题