Flutter app badge plugin

This plugin for Flutter adds the ability to change the badge of the ohos app.

ohos badge

Getting Started

Usage

dependencies:
  flutter_app_badge: 2.0.2
  flutter_app_badge_oho: 1.0.0

Dart

First, you just have to import the package in your dart files with:

import 'package:flutter_app_badge_ohos/flutter_app_badge_ohos.dart';

Then you can add a badge:

FlutterAppBadge.count(1);

Remove a badge:

FlutterAppBadge.count(0);