| Crates.io | dioxus-notification |
| lib.rs | dioxus-notification |
| version | 0.1.0-alpha.1 |
| created_at | 2025-04-13 05:23:59.388328+00 |
| updated_at | 2025-04-18 23:47:50.798892+00 |
| description | Send notifications from your Dioxus apps. |
| homepage | https://dioxuslabs.com |
| repository | https://github.com/DioxusLabs/sdk/ |
| max_upload_size | |
| id | 1631537 |
| size | 37,628 |
Send notifications from your Dioxus apps.
Add dioxus-notification to your Cargo.toml:
[dependencies]
dioxus-notification = "0.1"
Example:
use dioxus_notification::Notification;
Notification::new()
.app_name("dioxus test".to_string())
.summary("hi, this is dioxus test".to_string())
.body("lorem ipsum".to_string())
.show()
.unwrap();
This table represents the compatibility between this crate and Dioxus versions. The crate version supports a Dioxus version up until the next crate version in the table.
E.g. if crate version 0.1 supported Dioxus 0.6 and crate version 0.4 supported Dioxus 0.7, crate versions 0.1, 0.2, and 0.3 would support Dioxus 0.6.
| Crate Version | Dioxus Version |
|---|---|
| 0.1 | 0.6 |