feat: textarea example

This commit is contained in:
Jonathan Kelley 2022-02-22 21:36:59 -05:00
parent 45231651dd
commit 6b17522507

23
examples/textarea.rs Normal file
View file

@ -0,0 +1,23 @@
// How to use textareas
use dioxus::prelude::*;
fn main() {
dioxus::desktop::launch(app);
}
fn app(cx: Scope) -> Element {
let (model, set_model) = use_state(&cx, || String::from("asd"));
println!("{}", model);
cx.render(rsx! {
textarea {
class: "border",
rows: "10",
cols: "80",
value: "{model}",
oninput: move |e| set_model(e.value.clone()),
}
})
}