mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 04:33:06 +00:00
83 lines
1.6 KiB
Rust
83 lines
1.6 KiB
Rust
use dioxus::prelude::*;
|
|
use dioxus_desktop::{tao::dpi::LogicalSize, Config, WindowBuilder};
|
|
use dioxus_router::prelude::*;
|
|
|
|
fn main() {
|
|
env_logger::init();
|
|
|
|
LaunchBuilder::new(|| {
|
|
rsx! {
|
|
Router::<Route> {}
|
|
}
|
|
})
|
|
.cfg(
|
|
Config::new().with_window(
|
|
WindowBuilder::new()
|
|
.with_inner_size(LogicalSize::new(600, 1000))
|
|
.with_resizable(false),
|
|
),
|
|
)
|
|
.launch_desktop()
|
|
}
|
|
|
|
#[derive(Routable, Clone)]
|
|
#[rustfmt::skip]
|
|
enum Route {
|
|
#[layout(Footer)]
|
|
#[route("/")]
|
|
Home {},
|
|
#[route("/games")]
|
|
Games {},
|
|
#[route("/play")]
|
|
Play {},
|
|
#[route("/settings")]
|
|
Settings {},
|
|
}
|
|
|
|
#[component]
|
|
fn Footer() -> Element {
|
|
rsx! {
|
|
div {
|
|
Outlet::<Route> {}
|
|
|
|
p { "----" }
|
|
|
|
nav {
|
|
ul {
|
|
li {
|
|
Link { to: Route::Home {}, "Home" }
|
|
}
|
|
li {
|
|
Link { to: Route::Games {}, "Games" }
|
|
}
|
|
li {
|
|
Link { to: Route::Play {}, "Play" }
|
|
}
|
|
li {
|
|
Link { to: Route::Settings {}, "Settings" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[component]
|
|
fn Home() -> Element {
|
|
rsx!("Home")
|
|
}
|
|
|
|
#[component]
|
|
fn Games() -> Element {
|
|
rsx!("Games")
|
|
}
|
|
|
|
#[component]
|
|
fn Play() -> Element {
|
|
rsx!("Play")
|
|
}
|
|
|
|
#[component]
|
|
fn Settings() -> Element {
|
|
rsx!("Settings")
|
|
}
|