Git Product home page Git Product logo

dynamic_launcher_icon's Introduction

dynamic_launcher_icon

A flutter plugin to dynamically change launcher icons. Currently only for Android, support for more platforms are on their way.

Why this plugin and not others?

This plugin is primarily developed to address launcher icon switching issue for Android, because it is very straightforward for iOS. There are some plugins which will switch the icon, but will cause a crash first. This is because of this flutter issue

The problem

If switching the app icon crashes the app, then switching it when the app closes would circumvent the issue altogether. Sadly that is not straightforward. An app can be killed by

  • Exiting the app by pressing back
  • Killing it from the app switch view
  • Killed by system after it is in background for long enough

One may be tempted to place the icon switching logic inside onStop() or onDestroy() inside the activity, but as per android documentation they are not guaranteed to be called every time.

The solution

Running a service which is responsible for detecting if the app is closed and triggering the icon change.

  • This plugin runs a foreground service once the plugin has been requested to switch the icon.
  • When a service is killed, it has an onTaskRemoved() callback, which is called every time, we can perform tasks which are not much intensive in here.
  • Trigger the app launcher icon change logic. ''

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.