| Crates.io | brisk-egui |
| lib.rs | brisk-egui |
| version | 0.6.1 |
| created_at | 2024-12-18 10:05:43.54133+00 |
| updated_at | 2025-08-03 20:18:06.039769+00 |
| description | Use of the brisk declarative engine with egui. |
| homepage | https://cyloncore.com |
| repository | https://gitlab.com/cyloncore/brisk |
| max_upload_size | |
| id | 1487363 |
| size | 6,215 |
brisk-egui provides integration with egui.
The following creates a function hello_world_panel(ctx: &egui::Context, title: &str) that can be used with egui to build a user interface.
brisk_it! {
PanelComponent
{
name: hello_world_panel,
parameters: params!(title: &str),
CentralPanel
{
Heading
{
text: title,
},
}
}
}
More examples are available in the examples folder.