dioxus/examples/_examples/weather.rs

48 lines
1.8 KiB
Rust
Raw Normal View History

//! basic example that renders a simple VNode to the page :)
2021-02-23 20:08:23 +00:00
//!
//!
//!
use dioxus_core::prelude::*;
use dioxus_web::*;
fn main() {
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
console_error_panic_hook::set_once();
2021-02-24 06:31:19 +00:00
2021-06-26 01:15:33 +00:00
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(|cx| {
cx.render(html! {
2021-02-24 07:22:05 +00:00
<div>
<div class="flex items-center justify-center flex-col">
<div class="flex items-center justify-center">
<div class="flex flex-col bg-white rounded p-4 w-full max-w-xs">
// Title
<div class="font-bold text-xl">
2021-05-15 16:03:08 +00:00
"Jon's awesome site!!"
2021-02-24 07:22:05 +00:00
</div>
2021-02-23 20:08:23 +00:00
2021-02-24 07:22:05 +00:00
// Subtext / description
<div class="text-sm text-gray-500">
"He worked so hard on it :)"
</div>
2021-02-23 20:08:23 +00:00
2021-02-24 07:22:05 +00:00
<div class="flex flex-row items-center justify-center mt-6">
// Main number
<div class="font-medium text-6xl">
"1337"
</div>
2021-02-23 20:08:23 +00:00
</div>
2021-02-24 07:22:05 +00:00
// Try another
<div class="flex flex-row justify-between mt-6">
// <a href=format!("http://localhost:8080/fib/{}", other_fib_to_try) class="underline">
"Legit made my own React"
// </a>
</div>
2021-02-23 20:08:23 +00:00
</div>
</div>
</div>
</div>
2021-02-24 07:22:05 +00:00
})
2021-02-24 08:51:26 +00:00
}));
2021-02-23 20:08:23 +00:00
}