You are reading docs for v1.3.1, click here for the latest version.
랩핑 (WrapLayout)

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

WrapLayout 컨테이너는 orientation 프로퍼티에 기초하여 공간이 다 찰때까지 자식들을 행이나 열에 위치시키고 그들을 새로운 행이나 열로 래핑합니다.

예제

기본 WrapLayout

<WrapLayout backgroundColor="#3c495e">
  <Label text="first" width="30%" height="30%" backgroundColor="#43b883"/>
  <Label text="second" width="30%" height="30%" backgroundColor="#1c6b48"/>
  <Label text="third" width="30%" height="30%" backgroundColor="#289062"/>
  <Label text="fourth" width="30%" height="30%" backgroundColor="#289062"/>
</WrapLayout>

수직 WrapLayout

<WrapLayout orientation="vertical" backgroundColor="#3c495e">
  <Label text="first" width="30%" height="30%" backgroundColor="#43b883"/>
  <Label text="second" width="30%" height="30%" backgroundColor="#1c6b48"/>
  <Label text="third" width="30%" height="30%" backgroundColor="#289062"/>
  <Label text="fourth" width="30%" height="30%" backgroundColor="#289062"/>
</WrapLayout>

Props

이름타입설명
orientationString흐름의 방향. horizontal 이면 아이템이 행들에 배치됨. vertical 이면 아이템들이 열들에 배치됨. 기본값은 horizontal.
itemWidthNumber각 자식을 측정하고 위치시키는데 쓰이는 너비. 기본값은 Number.NaN. 이 값은 자식들을 제한하지 않음.
itemHeightNumber각 자식을 측정하고 위치시키는데 쓰이는 높이. 기본값은 Number.NaN. 이 값은 자식들을 제한하지 않음.

추가적인 자식 Props

없음

Contributors