Toast notifications for the egui library.
```shell cargo run -p egui-toast-demo
cd demo && trunk serve ```
```rust let mut toasts = Toasts::new() .anchor(Align2::RIGHT_BOTTOM, (-10.0, -10.0)) // 10 units from the bottom right corner .direction(egui::Direction::BottomUp);
if ui.button("Add toast").clicked() { toasts.add(Toast { text: "Hello, World!".into(), kind: ToastKind::Error, options: ToastOptions::default() .durationinseconds(5.0) .show_progress(true) }); }
// Show and update 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) -> Response { 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();
}
}).response
}
let mut toasts = Toasts::new() .customcontents(MYCUSTOMTOAST, mycustomtoastcontents);
if ui.button("Add toast").clicked() { toasts.add(Toast { text: "Hello, World!".into(), kind: ToastKind::Custom(MYCUSTOMTOAST), options: ToastOptions::default() }); }
toasts.show(ctx); ```