mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
21 lines
392 B
Rust
21 lines
392 B
Rust
// How to use textareas
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut model = use_signal(|| String::from("asd"));
|
|
|
|
rsx! {
|
|
textarea {
|
|
class: "border",
|
|
rows: "10",
|
|
cols: "80",
|
|
value: "{model}",
|
|
oninput: move |e| model.set(e.value().clone()),
|
|
}
|
|
}
|
|
}
|