mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
502 B
502 B
nav-title | title | environment | description | previous_url |
---|---|---|---|---|
scroll-view How-To | scroll-view | nativescript | Examples for using scroll-view | /ApiReference/ui/scroll-view/HOW-TO |
ScrollView
Using a ScrollView requires the ScrollView module. {%snippet article-require-scrollview-module%}
Declaring the ScrollView
<Page>
<ScrollView>
{%raw%}<Image src="{{ someBigImageUrl }}" />{%endraw%}
</ScrollView>
</Page>
Creating a ScrollView
{%snippet article-creating-scrollview%}