dioxus-autofmt 0.7.7

Autofomatter for Dioxus RSX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
rsx! {
    // Raw text strings
    button {
        r#"Click me"#
        r##"Click me"##
        r######"Click me"######
        r#"dynamic {1}"#
    }

    // Raw attribute strings
    div {
        width: r#"10px"#,
        height: r##"{10}px"##,
        "raw-attr": r###"raw-attr"###,
        "raw-attr2": r###"{100}"###,
    }
}