<div align="center">
[](https://gitlab.com/cyloncore/brisk/-/pipelines?ref=stable)
[](https://gitlab.com/cyloncore/brisk/-/pipelines?ref=dev/1)
[](https://docs.rs/brisk-egui)
[](https://crates.io/crates/brisk-egui)
</div>
brisk-egui
==========
`brisk-egui` provides integration with [egui](https://www.egui.rs/).
Example
-------
The following creates a function `hello_world_panel(ctx: &egui::Context, title: &str)` that can be used with `egui` to build a user interface.
```rust
brisk_it! {
PanelComponent
{
name: hello_world_panel,
parameters: params!(title: &str),
CentralPanel
{
Heading
{
text: title,
},
}
}
}
```
More examples are available in the [examples folder](https://gitlab.com/cyloncore/brisk/-/tree/stable/examples/).