1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 07:03:14 -04:00
Files
egui/examples/hello_android/src/main.rs
Lucas Meurer 6b38fd39a1 Use egui_demo_lib in android example (#5780)
* [x] I have followed the instructions in the PR template
2025-03-18 11:43:15 +01:00

10 lines
195 B
Rust

use hello_android::MyApp;
fn main() -> eframe::Result {
eframe::run_native(
"hello_android",
Default::default(),
Box::new(|cc| Ok(Box::new(MyApp::new(cc)))),
)
}