feat: support grid render function

This commit is contained in:
vicanso 2022-05-26 23:21:02 +08:00
parent 1dcd50ba9a
commit 7e4de64a0d
3 changed files with 109 additions and 1 deletions

View file

@ -58,6 +58,12 @@ const (
PositionBottom = "bottom"
)
const (
AlignLeft = "left"
AlignRight = "right"
AlignCenter = "center"
)
const (
OrientHorizontal = "horizontal"
OrientVertical = "vertical"