Issue
I'm using google_sign_in + firebase to authenticate users via their google accounts in my flutter application. I don't want my users to see the panel like the image below: (It has the flutter logo and my project name! But I want to put the app logo and a customized name instead.)
Solution
Based on the provided image in your question there is no way to edit the icon and name of the application manually or by code in the mentioned screenshot, the only way is to change the entire project icon and project name which is guided as follows.
To change project name on Android
Open AndroidManifest.xml (located at android/app/src/main)
<application
android:label="App Name" ...> // Your app name here
To change project name on iOS
Open info.plist (located at ios/Runner)
<key>CFBundleName</key>
<string>App Name</string> // Your app name here
Don't forget to run
flutter clean
To change the project icon use the following flutter plugin or watch this youtube video
flutter_launcher_icons
Answered By - Ghufran Ataie
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.