Constant freya::elements::rect::word_spacing
pub const word_spacing: (&'static str, Option<&'static str>, bool);
Expand description
Specify the spacing between words of the text.
ยงExample
fn app() -> Element {
rsx!(
label {
word_spacing: "10",
"Hello, World!"
}
)
}