Skip to content

Latest commit

 

History

History

patapata_apple_push_notifications

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

  1. Add the dependency to your pubspec.yaml file
flutter pub add patapata_apple_push_notifications
  1. Import the package
import 'package:patapata_apple_push_notifications/patapata_apple_push_notifications.dart';
  1. Activate the plugin
void main() {
  App(
    environment: const Environment(),
    plugins: [
      ApplePushNotificationsPlugin(),
    ],
  )
  .run();
}

Contributing

Check out the CONTRIBUTING guide to get started.

License

See the LICENSE file