Developed by @DeevSaini
Just Clone The Repo and Make sure to Change the Bundle Id and App Name according to your need.
Open the android/app/build.gradle file.
Locate the applicationId field in the defaultConfig block.
Change the value of applicationId to your desired package name.
if the app doesnt run make sure you change the package id in main activity also.
Open the ios/Runner.xcworkspace project in Xcode.
In the project navigator, select the Runner target. In the "General" tab, locate the "Bundle Identifier" field.
Change the value of the "Bundle Identifier" to your desired package name.
Open the android/app/src/main/AndroidManifest.xml file.
Locate the element.
Inside the element, you should find a element with the name "flutterEmbedding" and a value of "2". Right below that, you can add a element to set the display name.
Here's an example of how to set the display name:
<meta-data
android:name="io.flutter.app.display_name"
android:value="Deev Clean Template" />
Open the ios/Runner/Info.plist file.
Locate the CFBundleName key.
Change the value of CFBundleName to your desired display name.
After making these changes, it's a good idea to clean and rebuild your app for both Android and iOS to ensure the changes take effect.
Finally, thoroughly test your app on both Android and iOS to make sure everything is working as expected with the new package name and display name.