Changing App Name
To change the application name of a Application, you can use the rename
package, which simplifies the process significantly. This package allows you to update your app's display name across both Android and iOS platforms with minimal effort. It automates the necessary changes in the configuration files, ensuring a smooth transition without the need for manual edits. In this guide, we will walk through the steps to effectively rename your Flutter application using the rename
package.
Activate plugin using following command in the terminal in VSCode.
Run the following command to rename the application for both Android and iOS
If you face any error while running above command. Try prefixing 'flutter' before the command like below.
Last updated