Egui notify
Simple notifications library for EGUI
Usage
use Toasts;
let mut t = default;
t.info;
// ...
t.show;
Installation
[]
= "0.1"
Simple notifications library for EGUI
use egui_notify::Toasts;
let mut t = Toasts::default();
t.info("Hello world!", |t| t.with_duration(5.));
// ...
t.show(ctx);
[dependencies]
egui-notify = "0.1"