我的应用无法找到app_width
。
#<
app_width
的未定义局部变量或方法MainStylesheet
:0x10b563030 ...> (NameError)
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
答案 0 :(得分:0)
app_width
已弃用,已在1.2.0版中删除。
改为使用device_width
或screen_width
。