/quick_notify

A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter

Primary LanguageC++BSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

DEPRECATED

This repo is deprecated; please use the new mono repo https://github.com/woodemi/quick.flutter

quick_notify

A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter

Usage

Handle permisson

var hasPermission = await QuickNotify.hasPermission();
print('hasPermission $hasPermission');
var requestPermission = await QuickNotify.requestPermission();
print('requestPermission $requestPermission');

Post notification

QuickNotify.notify(
  title: 'My title',
  content: 'My content',
);