Hacker News new | ask | show | jobs
by jeremyleibs 993 days ago
The `re_ui` crate is responsible for most of the non-default styling. Here's the method where it it gets applied, which probably serves as a good reference for extending the look and feel of an egui application: https://github.com/rerun-io/rerun/blob/release-0.9.0/crates/...
2 comments

Any plans to spin it out as an egui UI library?
That would be awesome if they did. I decided to create an enhancement request: https://github.com/rerun-io/rerun/issues/3706
You can just use the crate. I’m using it in personal projects:

re_ui = "0.6.0"

Interesting. Does that include the UI styling only or also the custom components?

Update: look at rustdoc and I'm not seeing components, or at least not many

I will start there and see where it leads - thanks!