Contract layouts are now based on new Row and Column layouts
This commit is contained in:
@@ -5,9 +5,9 @@ import "git.tebibyte.media/tomo/tomo/input"
|
||||
import "git.tebibyte.media/tomo/tomo/event"
|
||||
import "git.tebibyte.media/tomo/objects/layouts"
|
||||
|
||||
var buttonLayout = layouts.NewGrid([]bool { true }, []bool { true })
|
||||
var iconButtonLayout = layouts.NewGrid([]bool { true }, []bool { true })
|
||||
var bothButtonLayout = layouts.NewGrid([]bool { false, true }, []bool { true })
|
||||
var buttonLayout = layouts.Row { true }
|
||||
var iconButtonLayout = layouts.Row { true }
|
||||
var bothButtonLayout = layouts.Row { false, true }
|
||||
|
||||
// Button is a clickable button.
|
||||
type Button struct {
|
||||
|
||||
Reference in New Issue
Block a user