FLUTTER ECOSYSTEM

DigitalInnovationGroup/flutter_app_badge

iOS でのアプリバッジの更新をサポート

flutter_app_badge のプロジェクト画像
Stars
2
Forks
1
最終プッシュ(UTC)
2023/07/21
プロジェクト状態
公開中
DigitalInnovationGroup GitHub avatar
GITHUB Organization

DigitalInnovationGroup ↗

言語DartObjective-CRuby

技術トピック

使用している依存関係

依存関係一覧 1 件
  • flutter{"sdk":"flutter"}

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

Flutter app badge plugin

Pub

Fork of flutter_app_badger.

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

Ios badge

Getting Started

iOS

On iOS, the notification permission is required to update the badge. It is automatically asked when the badge is added or removed.

Enable Remote notification in XCode:

IOS Remote notification

Or add in <project>/ios/Runner/Info.plist:

<key>UIBackgroundModes</key>
<array>
    <string>remote-notification</string>
</array>
Dart

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

import 'package:flutter_app_badge/flutter_app_badge.dart';

Then you can add a badge:

FlutterAppBadge.count(1);

Remove a badge:

FlutterAppBadge.count(0);