| Crates.io | bevy-egui-notify |
| lib.rs | bevy-egui-notify |
| version | 0.18.0 |
| created_at | 2024-10-03 13:49:06.92185+00 |
| updated_at | 2025-08-07 15:08:27.8008+00 |
| description | Simple notifications library for EGUI, in the bevy system |
| homepage | |
| repository | https://github.com/soraxas/bevy-egui-notify |
| max_upload_size | |
| id | 1395225 |
| size | 225,257 |
| FORK NOTICE: This is a simple fork that uses bevy_egui's re-exported egui crate, such that one can use the same egui version within the same applications (otherwise, there would be issue if you try to pass in an older/newer version of egui context to draw things). |
|---|
Simple notifications library for egui


use bevy_egui_notify::EguiToastsPlugin;
app.add_plugins(...)
.add_plugins(EguiToastsPlugin::default());
fn my_system(
toasts: ResMut<EguiToasts>,
...
) {
...
toasts.0.info("hello");
}
cargo add bevy-egui-notify