deepblue / snippets

deepblue's thoughts

This URL has Read+Write access

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