egui/crates/egui_extras
Emil Ernerfeldt 1b18f8e266
Add `Area::constrain_to` and `Window::constrain_to` (#3396)
* Rename `drag_bounds` to `constrain_to`

and allow turning off constraining for `Window`s

* Constrain DatePicker popup to screen

* Fix typo
2023-09-27 08:40:24 +02:00
..
src Add `Area::constrain_to` and `Window::constrain_to` (#3396) 2023-09-27 08:40:24 +02:00
CHANGELOG.md Changelogs: document that they are updated upon release (not by users) 2023-08-09 17:12:47 +02:00
Cargo.toml Polish image API (#3338) 2023-09-14 16:33:10 +02:00
README.md Misc cleanup (#3381) 2023-09-24 09:32:31 +02:00

README.md

egui_extras

Latest version Documentation unsafe forbidden MIT Apache

This is a crate that adds some features on top top of egui. This crate is for experimental features, and features that require big dependencies that do not belong in egui.

Images

One thing egui_extras is commonly used for is to install image loaders for egui:

egui_extras = { version = "*", features = ["all_loaders"] }
image = { version = "0.24", features = ["jpeg", "png"] }
egui_extras::install_image_loaders(egui_ctx);