mirror of
https://github.com/cyberarm/cyberarm_engine.git
synced 2025-12-16 21:22:33 +00:00
16 lines
304 B
Ruby
16 lines
304 B
Ruby
module CyberarmEngine
|
|
class Element
|
|
class Flow < Container
|
|
def layout
|
|
@children.each do |child|
|
|
if fits_on_line?(child)
|
|
position_on_current_line(child)
|
|
else
|
|
position_on_next_line(child)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|