You are reading docs for v1.3.1, click here for the latest version.
레이블 (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) 컴포넌트는 읽기전용 텍스트를 표시하는데 사용됩니다.

노트: <Label> HTML의 <Label>다릅니다.


<Label text="Label" />

FormattedString

특정 부분의 텍스트를 다르게 스타일링해야 한다면 FormattedString Span 요소를 결합하여 사용할 수 있습니다.

예:

<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.

네이티브 컴포넌트

AndroidiOS
android.widget.TextViewUILabel
Contributors