flutter set app icon code example

Example 1: flutter app icon

dev_dependencies:
  flutter_launcher_icons: "^0.7.3"

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

Example 2: flutter_launcher_icons

flutter pub get
flutter pub run flutter_launcher_icons:main

Example 3: fluter icon change

dev_dependencies: 
  flutter_test:
    sdk: flutter

  flutter_launcher_icons: any

Example 4: flutter launcher icon

dependencies:
  flutter_launcher_icons: ^0.8.0

Example 5: flutter iconData

const IconData(
  this.codePoint, {
  this.fontFamily,
  this.fontPackage,
  this.matchTextDirection = false,
});

Example 6: flutter change app icon

android/app/src/main/res

Tags:

Dart Example