marc2332 / freya

Cross-platform GUI library for 🦀 Rust powered by 🧬 Dioxus and 🎨 Skia.
https://freyaui.dev/
MIT License
1.33k stars 51 forks source link

enhancement: Support `%` of `auto` sizes #783

Closed marc2332 closed 2 weeks ago

marc2332 commented 1 month ago

Adding a new measurement type for size attributes, a referring to auto

rsx!(
        rect {
            width: "50a", // 50% of whatever size it was going to have if using `auto`
            overflow: "clip",
            label { 
                "Hello, World!" 
            }
        }
    )