【发布时间】:2020-07-26 05:25:19
【问题描述】:
我想知道如何在堆栈布局中将带有标签 textwrap 的文本居中。
我尝试使用horizontalAlignment="center",小文本没问题(例如:“hello”、“test test”),但如果我在标签上使用textWrap,它就不起作用了……
<StackLayout v-for="(text, indexVerse) in texts"
borderRadius="5" margin="5" padding="15" row="1" col="0" horizontalAlignment="center">
<Label textWrap="true"
:text="text.content"
color="#FFFFFF"
textAlign="center"
fontSize="20"/>
</StackLayout>
文字设置在左侧,没有居中:
【问题讨论】:
标签: nativescript nativescript-vue