mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-16 21:58:25 +00:00
example: add window_zoom
example
This commit is contained in:
parent
77a92a1cf6
commit
77c22161b9
1 changed files with 23 additions and 0 deletions
23
examples/window_zoom.rs
Normal file
23
examples/window_zoom.rs
Normal file
|
@ -0,0 +1,23 @@
|
|||
use dioxus::desktop::use_window;
|
||||
use dioxus::prelude::*;
|
||||
|
||||
fn main() {
|
||||
dioxus::desktop::launch(app);
|
||||
}
|
||||
|
||||
fn app(cx: Scope) -> Element {
|
||||
let window = use_window(&cx);
|
||||
|
||||
let level = use_state(&cx, || 1.0);
|
||||
|
||||
window.set_zoom_level(*level.get());
|
||||
cx.render(rsx! {
|
||||
input {
|
||||
r#type: "number",
|
||||
value: "{level_display}",
|
||||
oninput: |e| {
|
||||
level.set(e.value.parse::<f64>().unwrap_or_default())
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Add table
Reference in a new issue