I'm having some trouble getting the result I want from spacer. I am trying to replicate something created in Qt Desginer. It's essentially a grid container that takes up a fixed width, and to center that container in the window a horizontal spacer is placed on the left and right side of it.
In designer, both the spacers have equal "weight", so they take up the same amount of space, but I can't figure out how to do this in enaml. If I just try:
```
hbox(spacer, grid(...), spacer)
```
Then the first spacer takes up all the space. Is there a way to tell them to take up equal space (equal weights)? Since they are created in-place, I don't have ids to add an additional constraint with. Or is there a way to say "center grid"?