Vertical layout stub

This commit is contained in:
Sasha Koshka
2023-01-09 20:34:19 -05:00
parent c34e3cd91e
commit 31fb42ab58
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package layouts
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/artist"
// Vertical lays its children out vertically. It can contain any number of
// children. When an child is added to the layout, it can either be set to
// contract to its minimum height or expand to fill the remaining space (space
// that is not taken up by other children or padding is divided equally among
// these). Child elements will all have the same width.
type Vertical struct {
}