application_icon 2.0.0 copy "application_icon: ^2.0.0" to clipboard
application_icon: ^2.0.0 copied to clipboard

discontinued
PlatformAndroidiOS

This package provides a widget which shows the application icon of your app.

Application Icon #

Pub GitHub Workflow Status

This package provides a widget which shows the application icon of your app.

It tries to use the highest resolution icon of your app icon on iOS. On Android on API levels equal or higher than 26 (Android O) it tries to show the Adaptive Icon if available. Otherwise, it just shows the normal application icon.

If an adaptive icon is available it can be long pressed and dragged around. It tries to mimick the dragging in the app launcher.

Setup #

First, you will need to add application_icon to your pubspec.yaml:

dependencies:
  flutter:
    sdk: flutter
  application_icon: x.y.z # use the latest version found on pub.dev

Then, run flutter packages get in your terminal.

Example #

import 'package:application_icon/application_icon.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          // use AppIcon to show your application icon
          child: AppIconImage(),
        ),
      ),
    );
  }
}

If you are not interested in displaying the app icon you can also load the image with the AppIconInfo class.

📣 Author #

Sponsoring #

I'm working on my packages on my free-time, but I don't have as much time as I would. If this package or any other package I created is helping you, please consider to sponsor me. By doing so, I will prioritize your issues or your pull-requests before the others.

6
likes
120
pub points
76%
popularity

Publisher

verified publisheruekoetter.dev

This package provides a widget which shows the application icon of your app.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on application_icon