Hello
I'm trying to create two columns of checkboxes with the code below:
Shoes.app do
flow do
stack :width => 0.5 do
flow { check; para "foo" }
flow { check; para "foo" }
flow { check; para "foo" }
end
stack :width => -0.5 do
flow { check; para "bar" }
flow { check; para "bar" }
flow { check; para "bar" }
end
end
end
The problem is that on the right column the paras appear below the check
boxes, and not besides them as in the left column, which is the effect I
wanted to have.
Is there any way to guarantee that check boxes and text will be on the
same line?
Thanks,
Andre