| Crates.io | dioxus-sdk-notification |
| lib.rs | dioxus-sdk-notification |
| version | 0.7.0 |
| created_at | 2025-11-06 21:44:29.404282+00 |
| updated_at | 2025-11-06 21:44:29.404282+00 |
| description | Send notifications from your Dioxus apps. |
| homepage | https://dioxuslabs.com |
| repository | https://github.com/DioxusLabs/sdk/ |
| max_upload_size | |
| id | 1920763 |
| size | 36,355 |
Send notifications from your Dioxus apps.
Add dioxus-sdk-notification to your Cargo.toml:
[dependencies]
dioxus-sdk-notification = "0.1"
Example:
use dioxus_sdk_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();