一旦我尝试设置 a 的样式Text
,我就会收到此错误:
Cannot read property 'arity' of undefined
Open the developer console for more details.
开发者控制台提供TypeError: fun is undefined
.
Elm 0.12 和http://elm-lang.org/try
浏览器:Chrome、Firefox
titleStyle : Text.Style
titleStyle =
{ typeface = [ "serif" ]
, height = Just 18
, color = white
, bold = True
, italic = False
, line = Nothing
}
main = centered (style titleStyle (toText "hello"))
如果您更改main
为:
main = centered (toText "hello")
文本按预期呈现,没有样式。
我在 Elm 网站上找不到任何示例Text.style
- 我做错了什么还是这是一个错误?