-2

I have a problem when i change the ios app icon in the flutter .

This is my icon configuration list.

This is my problem. The small icon cannot be replaced.

However, the icon of the app has been changed.

2 Answers 2

1

you could change the icon automatically by using this package: https://pub.dev/packages/flutter_launcher_icons

add the icon image to the assets folder, then add this to your pubspec.yaml file

dev_dependencies:
  flutter_launcher_icons: "^0.9.2"

flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "assets/icon.png"

and run these commands in the terminal of your project

flutter pub get
flutter pub run flutter_launcher_icons:main
Sign up to request clarification or add additional context in comments.

1 Comment

It's just that the small icon didn't work. I didn't try to use the plugin
-1

You just need to watch this tutorial. https://www.youtube.com/watch?v=O9ChjwrZqns&t=458s It teaches how to change the android and ios icon.

1 Comment

In the same way, I don't know where the problem is

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.