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

7 lines
92 B
Go

package naive
type StackView struct {
Children []View
Orientation LayoutOrientation
}