mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-01-12 22:51:36 +08:00
10 lines
169 B
Ruby
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
|