patapata_apple_push_notifications 1.2.1
patapata_apple_push_notifications: ^1.2.1 copied to clipboard
This package is a plugin for Patapata that adds support for Apple Push Notifications to your Patapata app.
Patapata - Apple Push Notifications
Add support for Apple Push Notifications to your Patapata app.
About #
This package is a plugin for Patapata that adds support for Apple Push Notifications to your Patapata app. It will automatically integrate with Patapata's RemoteMessaging system and register for push notifications and provide access to APNs tokens.
Getting started #
- Add the dependency to your
pubspec.yaml
file
flutter pub add patapata_apple_push_notifications
- Import the package
import 'package:patapata_apple_push_notifications/patapata_apple_push_notifications.dart';
- Activate the plugin
void main() {
App(
environment: const Environment(),
plugins: [
ApplePushNotificationsPlugin(),
],
)
.run();
}
Contributing #
Check out the CONTRIBUTING guide to get started.