Files
redpotion/app/views/hello_world_section.rb
2014-12-05 23:23:08 -05:00

10 lines
169 B
Ruby

class HelloWorldSection < UIView
def on_load
apply_style :section
append(UIButton, :section_button).on(:touch) do
mp "Button touched"
end
end
end