Crate eframe[][src]

Expand description

eframe - the egui framework crate

If you are planning to write an app for web or native, and are happy with just using egui for all visuals, Then eframe is for you!

To get started, look at https://github.com/emilk/egui_template.

You write your application code for epi (implementing epi::App) and then call from crate::run_native your main.rs, and/or call eframe::start_web from your lib.rs.

eframe is implemented using egui_web and egui_glium.

Re-exports

pub use egui;
pub use epi;

Structs

NativeOptions

Options controlling the behavior of a native window

Functions

run_native

Call from fn main like this: eframe::run_native(Box::new(MyEguiApp::default()))