mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 12:13:04 +00:00
ba4389567d
* Deprecate relative asset paths * fix paths, better warnings in asset parser
30 lines
849 B
Rust
30 lines
849 B
Rust
//! Run a callback
|
|
//!
|
|
//! Whenever an Element is finally mounted to the Dom, its data is available to be read.
|
|
//! These fields can typically only be read asynchronously, since various renderers need to release the main thread to
|
|
//! perform layout and painting.
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_elements::geometry::euclid::Size2D;
|
|
|
|
fn main() {
|
|
dioxus::launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut dimensions = use_signal(Size2D::zero);
|
|
|
|
rsx!(
|
|
document::Link {
|
|
rel: "stylesheet",
|
|
href: asset!("/examples/assets/read_size.css"),
|
|
}
|
|
div {
|
|
width: "50%",
|
|
height: "50%",
|
|
background_color: "red",
|
|
onresize: move |evt| dimensions.set(evt.data().get_content_box_size().unwrap()),
|
|
"This element is {dimensions():?}"
|
|
}
|
|
)
|
|
}
|