apple_push_notification_service 0.0.2 copy "apple_push_notification_service: ^0.0.2" to clipboard
apple_push_notification_service: ^0.0.2 copied to clipboard

This plugin allows you to register and receieve push notification on iOS

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:apple_push_notification_service/apple_push_notification_service.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Content'),
        ),
      ),
    );
  }
}
0
likes
40
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

This plugin allows you to register and receieve push notification on iOS

Homepage

License

MIT (license)

Dependencies

flutter

More

Packages that depend on apple_push_notification_service

Packages that implement apple_push_notification_service