스크롤뷰 (ScrollView)

This is an overview of the most common usage of 스크롤뷰 (ScrollView). For more information about the available properties, methods, or events, head over to the complete API documentation for 스크롤뷰 (ScrollView).

스크롤뷰(ScrollView) 컴포넌트는 스크롤 가능한 컨텐츠를 표시할 수 있게 해줍니다.


<ScrollView orientation="horizontal">
  <StackLayout orientation="horizontal">
    <Label text="this" />
    <Label text="text" />
    <Label text="scrolls" />
    <Label text="horizontally" />
    <Label text="if necessary" />
  </StackLayout>
</ScrollView>

Props

이름타입설명
orientationStringhorizontal 혹은 vertical. 기본값은 vertical.

이벤트

이름설명
scroll스크롤 이벤트가 발생했을때 발생(Emit)
Contributors