dioxus/examples/flat_router.rs

78 lines
1.6 KiB
Rust
Raw Normal View History

2024-01-20 00:36:40 +00:00
use dioxus::desktop::{tao::dpi::LogicalSize, Config, WindowBuilder};
2022-03-05 21:10:17 +00:00
use dioxus::prelude::*;
2024-01-20 00:36:40 +00:00
use dioxus::router::prelude::*;
2022-03-04 18:08:25 +00:00
fn main() {
2024-01-18 20:32:01 +00:00
LaunchBuilder::desktop()
.with_cfg(
2024-01-18 20:32:01 +00:00
Config::new().with_window(
WindowBuilder::new()
.with_inner_size(LogicalSize::new(600, 1000))
.with_resizable(false),
),
)
.launch(|| rsx! { Router::<Route> {} })
2023-06-02 17:33:47 +00:00
}
#[derive(Routable, Clone)]
#[rustfmt::skip]
enum Route {
#[layout(Footer)]
#[route("/")]
Home {},
#[route("/games")]
Games {},
#[route("/play")]
Play {},
#[route("/settings")]
Settings {},
}
2022-12-16 10:55:20 +00:00
#[component]
fn Footer() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2022-12-17 06:39:27 +00:00
div {
Outlet::<Route> {}
2022-12-16 10:55:20 +00:00
p { "----" }
2022-12-16 10:55:20 +00:00
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" }
}
2022-03-04 18:08:25 +00:00
}
}
}
2022-12-16 10:55:20 +00:00
}
}
#[component]
fn Home() -> Element {
2024-01-16 19:18:46 +00:00
rsx!("Home")
2022-12-16 10:55:20 +00:00
}
#[component]
fn Games() -> Element {
2024-01-16 19:18:46 +00:00
rsx!("Games")
2022-12-16 10:55:20 +00:00
}
#[component]
fn Play() -> Element {
2024-01-16 19:18:46 +00:00
rsx!("Play")
2022-12-16 10:55:20 +00:00
}
#[component]
fn Settings() -> Element {
2024-01-16 19:18:46 +00:00
rsx!("Settings")
2022-03-04 18:08:25 +00:00
}