Constant freya_elements::elements::rect::font_size   
source · pub const font_size: (&'static str, Option<&'static str>, bool);Expand description
You can specify the size of the text using font_size.
§Example
fn app() -> Element {
    rsx!(
        label {
            font_size: "50",
            "Hellooooo!"
        }
    )
}