pen-fieldChanging App Name

To change the application name of a Application, you can use the renamearrow-up-right 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 renamearrow-up-right package.

  • Activate plugin using following command in the terminal in VSCode.

flutter pub global activate rename
  • Run the following command to rename the application for both Android and iOS

rename setAppName --targets ios,android --value "<YOUR_APP_NAME>"
circle-exclamation
flutter rename setAppName --targets ios,android --value "<YOUR_APP_NAME>"
circle-info

This is rename application name, However in order to rename application name reference inside the app you need to change the value for the APP_NAME variable in the .env file.

Last updated