dioxus/examples/form.rs

38 lines
1 KiB
Rust
Raw Normal View History

2022-02-04 07:13:35 +00:00
//! Forms
//!
2022-02-04 07:13:35 +00:00
//! Dioxus forms deviate slightly from html, automatically returning all named inputs
2024-02-14 20:33:07 +00:00
//! in the "values" field.
use dioxus::prelude::*;
use std::collections::HashMap;
fn main() {
launch(app);
}
fn app() -> Element {
let mut values = use_signal(|| HashMap::new());
2024-01-16 19:18:46 +00:00
rsx! {
div {
h1 { "Form" }
form {
oninput: move |ev| values.set(ev.values()),
input {
r#type: "text",
name: "username",
oninput: move |ev| values.set(ev.values())
}
input { r#type: "text", name: "full-name" }
input { r#type: "password", name: "password" }
input { r#type: "radio", name: "color", value: "red" }
input { r#type: "radio", name: "color", value: "blue" }
button { r#type: "submit", value: "Submit", "Submit the form" }
}
}
div {
h1 { "Oninput Values" }
"{values:#?}"
}
2024-01-14 05:12:21 +00:00
}
}