123456789101112131415161718 |
- #![allow(non_snake_case)]
- use dioxus::prelude::*;
- fn main() {
- dioxus_desktop::launch(App);
- }
- #[rustfmt::skip]
- fn App(cx: Scope) -> Element {
- // ANCHOR: boolean_attribute
- cx.render(rsx! {
- div {
- hidden: "false",
- "hello"
- }
- })
- // ANCHOR_END: boolean_attribute
- }
|