By default the below code will lay out each GroupBox object vertically stacked (one underneath the other).
enamldef Main(Window):
attr model
Container:
constraints = [ hbox(items) ]
Container: items:
Looper:
iterable << model.l # model.l = some list of atom objects
GroupBox:
title << loop_item.name
CheckBox:
checked := loop_item.active
How can i lay them out in a looper such that they are horizontally stacked (left to right) instead?
I can't find any information on this in the enaml docs / API.