flutter_app_badger 1.5.0 flutter_app_badger: ^1.5.0 copied to clipboard
Plugin to update the app badge on the launcher (both for Android, iOS and macOS)
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_app_badger/flutter_app_badger.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _appBadgeSupported = 'Unknown';
@override
initState() {
super.initState();
initPlatformState();
}
initPlatformState() async {
String appBadgeSupported;
try {
bool res = await FlutterAppBadger.isAppBadgeSupported();
if (res) {
appBadgeSupported = 'Supported';
} else {
appBadgeSupported = 'Not supported';
}
} on PlatformException {
appBadgeSupported = 'Failed to get badge support.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_appBadgeSupported = appBadgeSupported;
});
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text('Plugin example app'),
),
body: new SizedBox.expand(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
new Text('Badge supported: $_appBadgeSupported\n'),
new RaisedButton(
child: new Text('Add badge'),
onPressed: () {
_addBadge();
},
),
new RaisedButton(
child: new Text('Remove badge'),
onPressed: () {
_removeBadge();
}),
],
),
),
),
);
}
void _addBadge() {
FlutterAppBadger.updateBadgeCount(1);
}
void _removeBadge() {
FlutterAppBadger.removeBadge();
}
}