Constant freya_elements::label::text_shadow
source · pub const text_shadow: AttributeDescription;
Expand description
Specify the shadow of a text.
Syntax: <x> <y> <size> <color>
§Example
fn app() -> Element {
rsx!(
label {
text_shadow: "0 18 12 rgb(0, 0, 0)",
"Hello, World!"
}
)
}