1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/gx/text.v

18 lines
200 B
V

module gx
pub const (
align_left = 1
align_right = 4
)
pub struct TextCfg {
pub:
color Color
size int
align int
max_width int
family string
bold bool
mono bool
}