Constant freya_elements::elements::text::font_width
source · pub const font_width: AttributeDescription;
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!"
}
)
}