应用找不到 app_width(Ruby 运动查询)
app cannot find app_width (Ruby motion query)
我的应用找不到 app_width
。
错误
undefined local variable or method app_width
for #<MainStylesheet
:0x10b563030 ...> (NameError)
main_stylesheet.rb
class MainStylesheet < ApplicationStylesheet
...
def logo_text(st)
st.image = image.resource('logo-text')
if landscape?
else
st.frame = {t: 250, w: app_width, h: 60, centered: :horizontal}
end
end
end
app_width
已弃用并已在版本 1.2.0 中删除。
改用device_width
或screen_width
。
我的应用找不到 app_width
。
错误
undefined local variable or method
app_width
for #<MainStylesheet
:0x10b563030 ...> (NameError)
main_stylesheet.rb
class MainStylesheet < ApplicationStylesheet
...
def logo_text(st)
st.image = image.resource('logo-text')
if landscape?
else
st.frame = {t: 250, w: app_width, h: 60, centered: :horizontal}
end
end
end
app_width
已弃用并已在版本 1.2.0 中删除。
改用device_width
或screen_width
。