# fluttertpc_flutter_app_badge **Repository Path**: ren-weix/fluttertpc_flutter_app_badge ## Basic Information - **Project Name**: fluttertpc_flutter_app_badge - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2024-11-11 - **Last Updated**: 2024-11-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Flutter app badge plugin [![Pub](https://img.shields.io/pub/v/flutter_app_badge.svg)](https://pub.dev/packages/flutter_app_badge) Fork of [flutter_app_badger](https://pub.dev/packages/flutter_app_badger). This plugin for [Flutter](https://flutter.io) 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 `/ios/Runner/Info.plist`: ```xml UIBackgroundModes remote-notification ``` ### Dart First, you just have to import the package in your dart files with: ```dart import 'package:flutter_app_badge/flutter_app_badge.dart'; ``` Then you can add a badge: ```dart FlutterAppBadge.count(1); ``` Remove a badge: ```dart FlutterAppBadge.count(0); ```