notify_me 0.9.3 copy "notify_me: ^0.9.3" to clipboard
notify_me: ^0.9.3 copied to clipboard

PlatformAndroid

Notify Me SDK is an Flutter plugin designed to simplify integration with our hosted notification system

example/lib/main.dart

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

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

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final _notifyMePlugin = NotifyMe();

  @override
  void initState() {
    super.initState();
    // Just call this method in your main widget
    _notifyMePlugin.startService();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(),
      ),
    );
  }
}
2
likes
150
points
5
downloads

Publisher

verified publisherinferno-team.cloud

Weekly Downloads

Notify Me SDK is an Flutter plugin designed to simplify integration with our hosted notification system

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on notify_me

Packages that implement notify_me