Sha256: 33e437d5d5a665989d1325d9b188de4a56a2193f80c44f5073f5a7d0732c15ec
Contents?: true
Size: 946 Bytes
Versions: 6
Compression:
Stored size: 946 Bytes
Contents
Shoes.app :width => 320, :height => 420 do background "../static/menu-gray.png" background "../static/menu-top.png", :height => 50 background "../static/menu-left.png", :top => 50, :width => 55 background "../static/menu-right.png", :right => 0, :top => 50, :width => 55 image "../static/menu-corner1.png", :top => 0, :left => 0 # image "../static/menu-corner2.png", :right => 0, :top => 0 # list_box :items => ["Phyllis", "Ronald", "Wyatt"] list_box(items: ["Phyllis", "Ronald", "Wyatt"]) stack :margin => 40 do stack :margin => 10 do para "Name" @name = list_box :items => ["Phyllis", "Ronald", "Wyatt"] end stack :margin => 10 do para "Address" @address = edit_line end stack :margin => 10 do para "Phone" @phone = edit_line end stack :margin => 10 do button "Save" do Shoes.p [@name.text, @address.text, @phone.text] end end end end
Version data entries
6 entries across 6 versions & 2 rubygems