diff options
Diffstat (limited to 'geom.go')
| -rw-r--r-- | geom.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,14 +1,14 @@ package widget type Geom struct { - Left any - Right any - Top any + Left any + Right any + Top any Bottom any } type Size struct { - Width any + Width any Height any } @@ -25,6 +25,7 @@ Horizontal means layout widgets like books on a bookshelf --------------------------------- Vertical means layout widgets like books in a stack + ---------- | Widget | ---------- @@ -51,5 +52,4 @@ func (s Orientation) String() string { default: return "Horizontal" } - return "Horizontal" } |
