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
30
pub points
0%
popularity

Publisher

unverified uploader

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