gpt4 book ai didi

elm - 将文本内容放在容器中间

转载 作者:行者123 更新时间:2023-12-04 14:39:52 25 4
gpt4 key购买 nike

我正在使用拼贴,这样元素就会被放置在盒子的中间。

import Graphics.Element exposing (show)
import Graphics.Collage exposing (collage)

textBox =
show "hello world"

main =
collage 1000 1000 [textBox]

但是在最后一行有一个类型不匹配的错误,因为,

Graphics.Element.Element
Graphics.Collage.Form

因为 show 函数返回 Elementcollage 只接受 Form。我还可以使用什么其他功能来将文本内容定位在 collage 的中间?

最佳答案

您可以使用 Graphics.Collage.toForm 将元素转换为表单

toForm : Element -> Form

http://package.elm-lang.org/packages/elm-lang/core/2.1.0/Graphics-Collage#toForm

你的程序就变成了

main = collage 1000 1000 [toForm textBox]

关于elm - 将文本内容放在容器中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31636897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com