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

20 lines
214 B
V
Raw Normal View History

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
2020-07-27 22:19:43 +03:00
italic bool
}