flutter_broadcasts
一個用於透過 Android 意圖和 iOS 通知發送和接收廣播的外掛程式。
一個用於透過 Android 意圖和 iOS 通知發送和接收廣播的外掛程式。
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
https://img.shields.io/pub/v/flutter_broadcasts
A plugin for sending and receiving broadcasts with Android intents and iOS notifications. The API is inspired by Android's BroadcastReceivers and uses the NotificationCenter internally on iOS.
First install the package via pub.dev. Then subscribe to broadcasts like this:
BroadcastReceiver receiver = BroadcastReceiver(
names: <String>["de.kevlatus.broadcast"],
);
receiver.messages.listen(print);
receiver.start();
This package is currently under construction. Below you can find a quick overview of its implementation status. Contributions are welcome, if you are missing features.
Contributions are much appreciated, but keep in mind that this package is supposed to be generic and only expose native broadcast APIs like Android's BroadcastReceivers and the iOS NotificiationCenter. Consider creating separate packages for sending and receiving specific broadcast instances.
If you have any ideas for extending this package to other platforms, feel free to open a pull request or raise an issue.