Crates.io | eframe_tao |
lib.rs | eframe_tao |
version | 0.23.0 |
source | src |
created_at | 2022-08-23 10:40:28.380645 |
updated_at | 2023-06-15 08:02:27.62962 |
description | egui framework - write GUI apps that compiles to web and/or natively |
homepage | https://github.com/emilk/egui/tree/master/crates/eframe |
repository | https://github.com/emilk/egui/tree/master/crates/eframe |
max_upload_size | |
id | 650916 |
size | 274,628 |
egui
framework for taoeframe_tao
is a modification of eframe
to utilized tao
instead of winit
.
eframe
is the official framework library for writing apps using egui
. The app can be compiled both to run natively (cross platform) or be compiled to a web app (using WASM).
To get started, see the examples.
To learn how to set up eframe
for web and native, go to https://github.com/emilk/eframe_template/ and follow the instructions there!
There is also a tutorial video at https://www.youtube.com/watch?v=NtUkr_z7l84.
For how to use egui
, see the egui docs.
eframe
uses egui_glow_tao
for rendering, and on native it uses egui-tao
.
To use on Linux, first run:
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev
You need to either use edition = "2021"
, or set resolver = "2"
in the [workspace]
section of your to-level Cargo.toml
. See this link for more info.
You can also use egui_glow
and winit
to build your own app as demonstrated in https://github.com/emilk/egui/blob/master/crates/egui_glow/examples/pure_glow.rs.
eframe
uses WebGL (via glow
) and WASM, and almost nothing else from the web tech stack. This has some benefits, but also produces some challenges and serious downsides.
eframe
fakes it by adding some invisible DOM elements. It doesn't always work.eframe
, but it has to be enabled explicitly. There is no JS function to ask "Does the user want a screen reader?" (and there should probably not be such a function, due to user tracking/integrity concerns).In many ways, eframe
is trying to make the browser do something it wasn't designed to do (though there are many things browser vendors could do to improve how well libraries like egui work).
The suggested use for eframe
are for web apps where performance and responsiveness are more important than accessibility and mobile text editing.
Not all rust crates work when compiled to WASM, but here are some useful crates have been designed to work well both natively and as WASM:
The frame in eframe
stands both for the frame in which your egui
app resides and also for "framework" (frame
is a framework, egui
is a library).