How to Change below Icon in flutter. it is happening in Nokia 8.1. App Icon in drawer is correct.
Below is my current res folder
If you are intending to have your application be multi-platform, then there is a dart package you can use which takes care of generating launcher icons for both platforms.
You use it like so:
flutter_launcher_icons: ^0.7.4
In your pubspec.yaml file include the following attributes (based on your desires)
flutter_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon/icon.png"
Make sure to get packages (flutter pub get
)
You can read more in the documentation.