How to Change Package Name in Flutter? Last Updated : 09 Oct, 2022 Comments Improve Suggest changes Like Article Like Report Every Flutter app has a package name that uniquely identifies your app on the Google Play Store and Apple App Store. In this article, we will learn how to change the package name with a simple and easy method. The package name is basically a unique identity to identify that app on App Store, Play Store, and different platforms just like the Aadhaar card in India to identify your personality. The package name can be divided into 3 parts. domain_name.organization_name.project_name domain_name means your organization's last name like com, edu, in, and many more.organization_name means your organization name to which that particular project belongs.project_name means your project name To easily understand 1 and 2 just think about the website name of that organization name. For example, if it is flutterwings.com then your organization name can be com.flutterwings. You can do this by 2 method Manually on each and every place where it is written (But we didn't prefer this because sometimes we can skip places to replace them with the new package name)Through package on the pub.dev Let's start with the 2nd one Step 1: Import this package in dev dependency in your flutter project https://pub.dev/packages/change_app_package_name Dart dev_dependencies: change_app_package_name: ^0.1.3 Step 2: Then save your file or run flutter pub get. Step 3: Last step to run this command on your terminal with your new package name Dart flutter pub run change_app_package_name:main com.new.package.name That's it now your package name got changed everywhere with each and every platform. Comment More infoAdvertise with us Next Article How to Change Package Name in Flutter? flutterwings Follow Improve Article Tags : How To Dart Flutter Similar Reads How to Install HTTP Package in Flutter? Flutter is Googleâs Mobile SDK to build native iOS and Android apps from a single codebase. When building applications with Flutter everything towards Widgets â the blocks with which the flutter apps are built. The User Interface of the app is composed of many simple widgets, each of them handling o 2 min read How to Import Local Package in Flutter? Flutter is a framework that is used for developing cross-platform applications for Android, iOS, Linux, macOS, Windows, and other web applications using a single source code and it was developed by Google. Flutter is a free and open-source software development kit for developing mobile applications. 4 min read How to Change Android minSdkVersion in Flutter? If you are a Flutter developer, then you very well know about the minSdkVersion in Flutter. But the problem is that sometimes we need to change its value to a higher value because some package of flutter won't work on the default minSdkVersion value 16. If you didn't know, Google Plays tore only all 2 min read How to Install Flutter in Eclipse? Flutter is a framework for building cross-platform applications (android, ios, web) which use Dart as its programming language. Before IDEs like Android Studio and VS code became popular, Eclipse used to be heavily used by developers. Now we can install dart inside our Eclipse IDE with the help of t 2 min read Flutter - How to Get App Name, Package Name, Version & Build number In this article, we will learn about how to get package name, app name, version and build number and many more things in our Flutter app. The main usecase of using this is when we want to give a new update to users and have to notify them from our app. Step By Step ImplementationStep 1: Create a New 2 min read How to Add Splash Screen in Flutter App? We all have heard of Flutter right, it's a cross-platform application development tool. Flutter can be used to make Android, IOS, and Web applications with just one code base (Dart programming language). In this article let's see how we can add a splash screen to our applications. What is Splash Scr 3 min read How to Install Shared Preferences in Flutter? Shared preferences in flutter applications are used to store data in Local Storage. Shared Preferences store the data in a key-value pair. and we can also get data in a key-value pair using inbuilt functions. We can save large data in local storage or our Phone storage with the help of SQLite databa 2 min read Floating SnackBar in Flutter The floating_snackbar in Flutter is used to display a temporary message to users, often as feedback after an action.We know how to show the snack bar in a flutter, but everybody wants the application must look more interactive and user-friendly, that's why we can use animations or new designs in the 3 min read How to Create a Zoomable Image in Flutter? In Flutter, you can create a zoomable image using the GestureDetector and Transform widgets. The GestureDetector widget can be used to detect pinch gestures on the image, and the Transform widget can be used to apply the zoom transformation to the image. How to Use:Container( child: PhotoView( image 3 min read Flutter - How to Use SVG Image SVG (Scalable Vector Graphics) is a vector image format that can be used to create high-quality, resolution-independent graphics. In Flutter, you can use SVG images to display vector graphics in your app. To use SVG images in Flutter, you can use the  flutter_svg package to display SVG images in Flu 3 min read Like