Abdelrahman Tareq
Abdelrahman Tareq

Reputation: 2297

How to change app name in mac & linuix os desktop flutter application?

I have set my app name in the beginning of the project then wanted to change it after a while in mac & linuix os desktop flutter application

Upvotes: 4

Views: 2759

Answers (1)

Abdelrahman Tareq
Abdelrahman Tareq

Reputation: 2297

Mac os: open Info.plist file inside macos/Runner/Info.plist

then edit product name from

<key>CFBundleName</key> <string>$(PRODUCT_NAME)</string>

to

<key>CFBundleName</key> <string>The best project</string>

enter image description here

Linuix: https://docs.flutter.dev/deployment/linux

enter image description here

Upvotes: 6

Related Questions