public
Description: deepblue's thoughts
Homepage: http://myruby.net/
Clone URL: git://github.com/deepblue/snippets.git
Bryan Kang (author)
Sun Feb 08 18:55:02 -0800 2009
commit  50bcfcc83070f51559557fec8c20256fc72e781f
tree    fd5e69329803b69cb67cb4795a58ee36ec547764
parent  b188bf3aacdc917b1cbd03bedb35745d9992da71
snippets / chalenge / hello_ui / hello_shoes.rb
100644 8 lines (7 sloc) 0.176 kb
1
2
3
4
5
6
7
8
Shoes.app(:width => 100, :height => 70) do
  background "#EFC"
  border "#BE8", :strokewidth => 6
 
  stack(:margin => 10) {
    button("Hello!") { alert("I'm Shoes") }
  }
end