mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
This combines `SidePanel` and `TopBottomPanel` into a single `Panel`. The old types are still there as type aliases, but are deprecated. `.min_width(…)` etc are now called `.min_size(…)` etc. Again, the old names are still there, but deprecated. (edited by @emilk) --------- Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
Hello world example for Android.
Use cargo-apk to build and run. Requires a patch to workaround an upstream bug.
One-time setup:
cargo install \
--git https://github.com/parasyte/cargo-apk.git \
--rev 282639508eeed7d73f2e1eaeea042da2716436d5 \
cargo-apk
Build and run:
# Run on android
cargo apk run -p hello_android --lib
# Run on your desktop
cargo run -p hello_android
