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>はスクロール可能なコンテンツを表示するUIコンポーネントです。コンテンツは垂直方向か並行方向にスクロールできます。


<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

名前説明
orientationStringコンテンツがスクロールできる方向を取得・設定します。使用可能な値は: horizontalverticalです。
デフォルトの値: vertical
scrollBarIndicatorVisibleBooleanスクロールバーが見えるかどうかを指定します。
デフォルトの値: true.

Events

名前説明
scrollスクロールイベントが発生した際に発火します。

Native component

AndroidiOS
android.viewUIScrollView
Contributors