标签

这是对标签最常见用法的概述。有关可用属性、方法或事件的更多信息,请查看标签的完整 API 文档。

<Label> 是一个显示只读文本的 UI 组件。

重要:此 <Label> 与 HTML <label> 不同


<Label text="Label" />

样式标签

如果您需要对文本的部分进行样式设置,可以使用FormattedStringSpan 元素的组合。

<Label textWrap="true">
  <FormattedString>
    <Span text="This text has a " />
    <Span text="red " style="color: red" />
    <Span text="piece of text. " />
    <Span text="Also, this bit is italic, " fontStyle="italic" />
    <Span text="and this bit is bold." fontWeight="bold" />
  </FormattedString>
</Label>

Props

名称类型描述
文本字符串获取或设置标签的文本。
文本换行布尔值获取或设置标签是否换行文本。
默认值:false

原生组件

AndroidiOS
android.widget.TextViewUILabel
贡献者