egui
egui copied to clipboard
egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native
This is a way to communicate with ConcreteApp from JavaScript. There are few ways how to do it - 1. place ConcreteApp in a Arc and save it somewhere before...
Bumps winit version
I am trying to render 10.000+ items in a scroll view, which all have different heights, including multiline text and images. Currently the examples only show how to render rows...
**Is your feature request related to a problem? Please describe.** I am using egui in a command line application. The app displays a window for the user to provide some...
Closes https://github.com/emilk/egui/issues/1223 This adds `NativeOptions::run_and_return` with default value `true`. If `true`, execution will continue after the eframe window is closed. This is a new behavior introduced in this PR. If...
Here's an example of how you would currently create a ui with multiple elements: ```rust ui.heading("egui"); ui.label("egui is an immediate mode GUI library written in Rust. egui runs both on...
eframe = { git = "https://github.com/emilk/egui", branch = "master" } **Describe the bug** Wheb the window show it's kinda buggy it's light then dark **To Reproduce** A bit modified the...
**Describe the bug** Rendering seems to be broken on a laptop with integrated graphics ("Mobile Intel(R) 4 Series Express Chipset Family"). **Expected behavior**  **Screenshots**  **Desktop (please complete the...
**Describe the bug** When using a SidePanel with 0 margin and with a ScrollArea inside, the panel automatically shrinks, even if put inside a justified vertical layout. Every frame the...
Hi! ## Cloning I'm trying to use the `Plot` and `Line` API. This requires that I consume my data by value, I'd much rather keep a cached copy & provide...