Sha256: ab94cfe8a3c810d3297b4ecb713db5be9ab6547e959ad70f2fdc88e5ec484c6d

Contents?: true

Size: 647 Bytes

Versions: 5

Compression:

Stored size: 647 Bytes

Contents

Shoes.app(title: "Spacing") do
  stack margin: 50 do
    background "purple"
    para "with 50px margin", stroke: "white"
  end
  stack margin: { left: 10, right: 10, bottom: 20 } do
    background "red"
    para "with 10px margin-left and margin-right, and 20px margin-bottom", stroke: "white"
  end
  stack margin: [15, 15, nil, 40] do
    background "blue"
    para "with 15px margin-left and margin-right, and 40px margin-bottom", stroke: "white"
  end
  stack margin_left: 20, margin_right: 30, margin_bottom: 10 do
    background "green"
    para "with 20px margin-left, 30px margin-right, and 10px margin-bottom", stroke: "white"
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
scarpe-0.3.0 examples/spacing.rb
scarpe-0.2.2 examples/spacing.rb
lacci-0.2.1 examples/spacing.rb
scarpe-0.2.1 examples/spacing.rb
scarpe-0.2.0 examples/spacing.rb