1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Improve documentation

This commit is contained in:
Emil Ernerfeldt
2021-02-07 14:55:39 +01:00
parent a382fad1d0
commit 5ce681ef16
9 changed files with 99 additions and 35 deletions

View File

@@ -70,7 +70,7 @@ ui.label(format!("Hello '{}', age {}", name, age));
* Friendly: difficult to make mistakes, and shouldn't panic
* Portable: the same code works on the web and as a native app
* Easy to integrate into any environment
* A simple 2D graphics API for custom painting
* A simple 2D graphics API for custom painting ([`epaint`](https://docs.rs/epaint)).
* No callbacks
* Pure immediate mode
* Extensible: [easy to write your own widgets for egui](https://github.com/emilk/egui/blob/master/egui_demo_lib/src/apps/demo/toggle_switch.rs)