Overlay
Toast
Notificación temporal. El tipo pinta fondo y texto. Success lleva un cohete. Requiere ToastProvider (ya está en el shell).
Preview
Uso
use ui::toast::{use_toast, ToastOptions};
let toast = use_toast();
Button {
onclick: move |_| {
toast.success("Guardado".into(), ToastOptions::new().description("Todo sincronizado"));
},
"Guardar"
}