mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-01-12 22:51:36 +08:00
10 lines
180 B
Ruby
10 lines
180 B
Ruby
class TestScreenStylesheet < ApplicationStylesheet
|
|
def root_view(st)
|
|
st.background_color = color.white
|
|
end
|
|
def test_label(st)
|
|
st.text = 'style from sheet'
|
|
end
|
|
end
|
|
|