Constant freya_elements::label::text_align
source · pub const text_align: AttributeDescription;
Expand description
You can change the alignment of the text using the text_align
attribute.
Accepted values:
center
end
justify
left
(default)right
start
§Example
fn app() -> Element {
rsx!(
label {
text_align: "right",
"Hello, World!"
}
)
}