naive/layout.go
2025-01-20 07:34:39 +01:00

9 lines
118 B
Go

package naive
type LayoutOrientation uint8
const (
LayoutOrientationHorizontal = iota
LayoutOrientationVertical
)