7 releases

0.1.6 May 2, 2024
0.1.5 May 2, 2024
0.1.3 Mar 9, 2024
0.1.2 Feb 6, 2024

#1129 in Web programming

Download history 3/week @ 2024-02-05 16/week @ 2024-02-19 45/week @ 2024-02-26 166/week @ 2024-03-04 49/week @ 2024-03-11 58/week @ 2024-03-18 26/week @ 2024-04-01 68/week @ 2024-04-15 63/week @ 2024-04-22 446/week @ 2024-04-29

577 downloads per month

MIT license

525KB
711 lines

Example

leptos_toaster

A Toaster component for Leptos heavily inspired by sonner

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
		view! { 
			<Toast 
				toast_id 
				variant=ToastVariant::Info 
				title=view! {"My toast"}.into_view() 
			/> 
		},
		Some(toast_id),
		None // options
	);
}

Dependencies

~20–33MB
~537K SLoC