flutter_launcher_icons_maker 0.10.2 flutter_launcher_icons_maker: ^0.10.2 copied to clipboard
A package which simplifies the task of updating your Flutter app's launcher icon.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add flutter_launcher_icons_maker
With Flutter:
$ flutter pub add flutter_launcher_icons_maker
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
flutter_launcher_icons_maker: ^0.10.2
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutter_launcher_icons_maker/abstract_platform.dart';
import 'package:flutter_launcher_icons_maker/android.dart';
import 'package:flutter_launcher_icons_maker/constants.dart';
import 'package:flutter_launcher_icons_maker/contents_image_object.dart';
import 'package:flutter_launcher_icons_maker/custom_exceptions.dart';
import 'package:flutter_launcher_icons_maker/icon_template.dart';
import 'package:flutter_launcher_icons_maker/ios.dart';
import 'package:flutter_launcher_icons_maker/macos.dart';
import 'package:flutter_launcher_icons_maker/main.dart';
import 'package:flutter_launcher_icons_maker/utils.dart';
import 'package:flutter_launcher_icons_maker/web.dart';
import 'package:flutter_launcher_icons_maker/windows.dart';
import 'package:flutter_launcher_icons_maker/xml_templates.dart';