Constant freya_elements::elements::rect::font_width   
source · pub const font_width: (&'static str, Option<&'static str>, bool);Expand description
You can choose a width for a text using the font_width attribute.
⚠️ Only fonts with variable widths will be affected.
Accepted values:
- ultra-condensed
- extra-condensed
- condensed
- normal(default)
- semi-expanded
- expanded
- extra-expanded
- ultra-expanded
§Example
fn app() -> Element {
    rsx!(
        label {
            font_width: "ultra-expanded",
            "Hello, wide World!"
        }
    )
}