LabelStyle
Customizes the appearance of labels.
export class LabelStyle {
color: Color = Color(0xFFEEEEEE)
size: Int = 12
font: ui.FontFamilyName = default_font
font_weight: Int = ui.font_weights.normal
italic: Bool = false
max_width: Float = 100
alignment: ui.Alignment = ui.Alignment.center
offset_x: Float = 0
offset_y: Float = 30
copy() -> (LabelStyle)
overriding(_ modify: (LabelStyle) -> ()) -> (LabelStyle)
}