Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woodemi/quick_notify
A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter
https://github.com/woodemi/quick_notify
Last synced: 3 months ago
JSON representation
A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter
- Host: GitHub
- URL: https://github.com/woodemi/quick_notify
- Owner: woodemi
- License: bsd-3-clause
- Archived: true
- Created: 2021-06-09T09:07:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-09T12:07:14.000Z (over 2 years ago)
- Last Synced: 2024-07-23T02:39:47.297Z (4 months ago)
- Language: C++
- Homepage:
- Size: 211 KB
- Stars: 39
- Watchers: 3
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-flutter-desktop - quick_notify - A cross-platform (Android/iOS/Web/Windows/macOS/Linux) notification plugin for Flutter. (Packages)
README
# 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
```dart
var hasPermission = await QuickNotify.hasPermission();
print('hasPermission $hasPermission');
``````dart
var requestPermission = await QuickNotify.requestPermission();
print('requestPermission $requestPermission');
```### Post notification
```dart
QuickNotify.notify(
title: 'My title',
content: 'My content',
);
```