notificare 3.0.0-alpha.1 copy "notificare: ^3.0.0-alpha.1" to clipboard
notificare: ^3.0.0-alpha.1 copied to clipboard

outdated

Official Notificare Flutter plugin. Implements the power of the Notificare platform in Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:notificare/notificare.dart';
import 'package:notificare_example/home.dart';

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();

    Notificare.setUseAdvancedLogging(true);
    Notificare.launch();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Home(),
      ),
    );
  }
}
1
likes
0
pub points
55%
popularity

Publisher

verified publishernotificare.com

Official Notificare Flutter plugin. Implements the power of the Notificare platform in Flutter applications.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

flutter, json_annotation

More

Packages that depend on notificare