mbmessages 2.1.3+3 mbmessages: ^2.1.3+3 copied to clipboard
MBMessages plugin for MBurger, that lets you manage push notifications and in-app messages.
import 'package:flutter/material.dart';
import 'package:mbmessages/mbmessages.dart';
import 'package:mburger/mburger.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
MBManager.shared.apiToken = 'YOUR_API_TOKEN';
MBManager.shared.plugins = [
MBMessages(
onButtonPressed: (button) {
debugPrint(button.toString());
},
),
];
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MBMessagesBuilder(
child: Scaffold(
appBar: AppBar(
title: const Text('MBMessages example app'),
),
body: Center(
child: TextButton(
child: const Text(
'Configure push notifications',
),
onPressed: () => _configurePushNotifications(),
),
),
),
),
);
}
Future<void> _configurePushNotifications() async {
MBMessages.pushToken = 'YOUR_PUSH_API_KEY';
MBMessages.onToken = (token) async {
debugPrint("Token received $token");
await MBMessages.registerDevice(token).catchError(
(error) => debugPrint(error),
);
await MBMessages.registerToTopics(
[
await MBMessages.projectPushTopic(),
await MBMessages.devicePushTopic(),
const MPTopic(code: 'Topic'),
],
).catchError(
(error) => debugPrint(error),
);
debugPrint('Registered');
};
MBMessages.configurePush(
onNotificationArrival: (notification) {
debugPrint("Notification arrived: $notification");
},
onNotificationTap: (notification) {
debugPrint("Notification tapped: $notification");
},
androidNotificationsSettings: const MPAndroidNotificationsSettings(
channelId: 'mpush_example',
channelName: 'mpush',
channelDescription: 'mpush',
icon: '@mipmap/icon_notif',
),
);
MBMessages.requestToken();
Map<String, dynamic>? launchNotification =
await MBMessages.launchNotification();
debugPrint(launchNotification.toString());
}
}