Forked. PR is pending: https://github.com/SorenHolstHansen/leptos_toaster/pull/34
- Rust 72.6%
- CSS 27.4%
| .github/workflows | ||
| .zed | ||
| assets | ||
| examples/basic | ||
| src | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
| rust-toolchain.toml | ||
leptos_toaster
A Toaster component for Leptos heavily inspired by sonner
SSR
If using SSR don't forget to set the features in your own Project correctly
[features]
ssr = ["leptos_toaster/ssr"]
hydrate = ["leptos_toaster/hydrate"]
Usage
Somewhere, probably near the top of your component tree, add the Toaster component
view! {
<Toaster
position=toaster::ToasterPosition::BottomCenter
>
// ...
</Toaster>
}
and then whenever you need a toast, do
let toast_context = expect_context::<Toasts>();
let create_toast = move || {
let toast_id = ToastId::new();
toast_context.toast(
// This uses the built in toast component that requires the `builtin_toast` feature.
// You can use your own components here
move || view! {
<Toast
toast_id
variant=ToastVariant::Info
title=|| view! {"My toast"}
/>
},
Some(toast_id),
None // options
);
}
