flutter_app_badge_ohos 1.0.0
flutter_app_badge_ohos: ^1.0.0 copied to clipboard
Plugin to update the app badge on the launcher ohos.
Flutter app badge plugin #
This plugin for Flutter adds the ability to change the badge of the ohos app.
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);