9 lines
118 B
Go
9 lines
118 B
Go
|
package naive
|
||
|
|
||
|
type LayoutOrientation uint8
|
||
|
|
||
|
const (
|
||
|
LayoutOrientationHorizontal = iota
|
||
|
LayoutOrientationVertical
|
||
|
)
|