flutter launcher icon code example

Example 1: flutter launcher icon generate

dev_dependencies:
  flutter_launcher_icons: ^0.8.1
flutter_icons:
  android: true
  ios: true
  image_path: "assets/icon/icon.png"
  
 then
 cmd ->flutter pub run flutter_launcher_icons:main

Example 2: how to add icon in the app bar in flutter

AppBar(  title: Text("Hello Appbar"),  leading: Icon(    Icons.menu,  ),);

Example 3: 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 4: flutter laucnher icons pug

dependencies:
  flutter_launcher_icons: ^0.7.5

Example 5: flutter_launcher_icons

flutter pub get
flutter pub run flutter_launcher_icons:main

Example 6: flutter launcher icon

dependencies:
  flutter_launcher_icons: ^0.8.0

Tags:

Dart Example