본문으로 건너뛰기

VStack

<VStack /> 은 하위 컴포넌트를 감쌀 수 있는 flex box 이며, flexDirectioncolumn 으로 고정되어 있는 컴포넌트입니다.

Loading...

How to use

import { VStack } from '@vibrant-ui/components';

Properties

VStackStack 의 direction(flex-direction) 이 vertical로 고정된 컴포넌트입니다.

따라서 당연하게도 Stack 의 기본 속성들direction을 제외한 모든 속성을 사용할 수 있습니다.

크기, 위치, 오버플로우 속성을 설정하려면 Stack 의 Properties 항목을 참고하세요.

PropTypeDefaultDescription
alignVerticalspace-between | start | end | centerstart주축(Main axis), 즉 y축을 기준으로 alignment 를 설정합니다. 플렉스 박스의 justifyContent 속성에 대응되어 동작합니다.
alignHorizontalstretch | start | end | centerstretch교차축(Cross axis), 즉 x축을 기준으로 alignment 를 설정합니다. 플렉스 박스의 alignItems 속성에 대응되어 동작합니다.

Usage

alignVertical

<VStack /> 의 주축(Main axis) 을 기준으로 정렬되는 속성입니다.

flowDirectioncolumn 인 플렉스 박스의 justifyContent 속성에 대응됩니다.

Loading...

alignHorizontal

<VStack /> 의 교차축(Cross axis) 을 기준으로 정렬되는 속성입니다.

flowDirectioncolumn 인 플렉스 박스의 alignItems 속성에 대응됩니다.

Loading...
이전
ViewPagerTabGroup