mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
dd4547d753
Add functions like window() and router() to allow dynamically grabbing global contexts without have to use the hook variants. Deprecates the existing hook variants to discourage folks from adding more noise to their codebases.
61 lines
1.4 KiB
Rust
61 lines
1.4 KiB
Rust
use dioxus::prelude::*;
|
|
use dioxus_desktop::{tao::dpi::PhysicalPosition, LogicalSize, WindowBuilder};
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch_cfg(app, make_config());
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
width: "100%",
|
|
height: "100%",
|
|
background_color: "red",
|
|
border: "1px solid black",
|
|
|
|
div {
|
|
width: "100%",
|
|
height: "10px",
|
|
background_color: "black",
|
|
onmousedown: move |_| dioxus_desktop::window().drag(),
|
|
}
|
|
|
|
"This is an overlay!"
|
|
}
|
|
})
|
|
}
|
|
|
|
fn make_config() -> dioxus_desktop::Config {
|
|
dioxus_desktop::Config::default()
|
|
.with_window(make_window())
|
|
.with_custom_head(
|
|
r#"
|
|
<style type="text/css">
|
|
html, body {
|
|
height: 100px;
|
|
margin: 0;
|
|
overscroll-behavior-y: none;
|
|
overscroll-behavior-x: none;
|
|
overflow: hidden;
|
|
}
|
|
#main, #bodywrap {
|
|
height: 100%;
|
|
margin: 0;
|
|
overscroll-behavior-x: none;
|
|
overscroll-behavior-y: none;
|
|
}
|
|
</style>
|
|
"#
|
|
.to_owned(),
|
|
)
|
|
}
|
|
|
|
fn make_window() -> WindowBuilder {
|
|
WindowBuilder::new()
|
|
.with_transparent(true)
|
|
.with_decorations(false)
|
|
.with_resizable(false)
|
|
.with_always_on_top(true)
|
|
.with_position(PhysicalPosition::new(0, 0))
|
|
.with_max_inner_size(LogicalSize::new(100000, 50))
|
|
}
|