flutterlauncher-icon

flutter Change Icon which shows while viewing Background running apps


How to Change below Icon in flutter. it is happening in Nokia 8.1. App Icon in drawer is correct.

enter image description here

Below is my current res folder

enter image description here


Solution

  • 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:

    1. Add dependency to pubspec.yaml file

    flutter_launcher_icons: ^0.7.4

    1. 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"
      
    2. Make sure to get packages (flutter pub get)

    You can read more in the documentation.