use std::path::{absolute, Path};
use tauri_winrt_notification::{IconCrop, Toast};
fn main() {
let icon_path = absolute(Path::new("./resources/tauri_large.png")).unwrap();
Toast::new(Toast::POWERSHELL_APP_ID)
.hero(&icon_path, "alt text")
.icon(&icon_path, IconCrop::Circular, "alt text")
.title("Lots of pictures here")
.text1("One above the text as the hero")
.text2("One to the left as an icon, and several below")
.image(&icon_path, "the sun")
.image(&icon_path, "the moon")
.sound(None) .show()
.expect("notification failed");
}