1234567891011121314151617181920212223242526272829303132333435363738 |
- use dioxus::prelude::*;
- use dioxus_desktop::tao::dpi::LogicalSize;
- use dioxus_router::{Link, Route, Router};
- fn main() {
- env_logger::init();
- dioxus_desktop::launch_cfg(app, |c| {
- c.with_window(|c| {
- c.with_title("Spinsense Client")
- .with_inner_size(LogicalSize::new(600, 1000))
- .with_resizable(false)
- })
- })
- }
- fn app(cx: Scope) -> Element {
- cx.render(rsx! {
- Router {
- Route { to: "/", "Home" }
- Route { to: "/games", "Games" }
- Route { to: "/play", "Play" }
- Route { to: "/settings", "Settings" }
- p {
- "----"
- }
- nav {
- ul {
- Link { to: "/", li { "Home" } }
- Link { to: "/games", li { "Games" } }
- Link { to: "/play", li { "Play" } }
- Link { to: "/settings", li { "Settings" } }
- }
- }
- }
- })
- }
|