Label

This is an overview of the most common usage of Label. For more information about the available properties, methods, or events, head over to the complete API documentation for Label.

<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

名前説明
textStringラベルのテキストを取得・設定します。
textWrapBooleanラベルがテキストをラップするかどうかを取得・設定します。
デフォルトの値は: falseです。

Native component

AndroidiOS
android.widget.TextViewUILabel
Contributors