Toast notifications for the egui library.
cargo run --example demo
```rust let mut toasts = Toasts::new() .anchor((300.0, 300.0)) .direction(egui::Direction::BottomUp) .aligntoend(true);
toasts.info(ui, "Hello, World!", Duration::fromsecs(5)); // or toasts.warning(ui, "Hello, World!", ToastOptions { showicon: true, ..ToastOptions::withduration(Duration::fromsecs(5)) }); // or toasts.add(ui, "Hello, World!", ToastKind::Error, Duration::from_secs(5));
// Show all toasts toasts.show(ctx); ```
Look of the notifications can be fully customized.
```rust const MYCUSTOMTOAST: u32 = 0;
fn mycustomtoastcontents(ui: &mut Ui, toast: &mut Toast) { egui::Frame::default() .fill(Color32::fromrgb(33, 150, 243)) .inner_margin(Margin::same(12.0)) .rounding(4.0) .show(ui, |ui| { ui.label(toast.text.clone().color(Color32::WHITE));
if ui.button("Close me").clicked() {
toast.close();
}
});
}
let mut toasts = Toasts::new() .customcontents(MYCUSTOMTOAST, &mycustomtoastcontents);
if ui.button("Add toast").clicked() { toasts.add(ui, "Hello, World!", MYCUSTOMTOAST, ToastOptions::default()); }
toasts.show(ctx); ```