The default vertical alignment in a flow
slot is apparently to top-align the elements. Here's a sample:
Shoes.app (:title => "Vertical Alignment", :width => 300, :height => 150) do
background "#DFA"
flow :margin => 30 do
title "BIG"
tagline "MEDIUM"
inscription "SMALL"
end
end
How do I get the flow
slot to center-align its elements short of calculating a :rise
value for each element? I would have expected a vertical-alignment style for flow
slots and a horizontal-alignment style for stack
slots, but I don't see anything like that. What did I miss?