mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
19 lines
419 B
Markdown
19 lines
419 B
Markdown
---
|
|
nav-title: "scroll-view How-To"
|
|
title: "How-To"
|
|
description: "Examples for using scroll-view"
|
|
---
|
|
# ScrollView
|
|
Using a ScrollView requires the ScrollView module.
|
|
<snippet id='article-require-module'/>
|
|
### Declaring the ScrollView.
|
|
``` XML
|
|
<Page>
|
|
<ScrollView>
|
|
{%raw%}<Image src="{{ someBigImageUrl }}" />{%endraw%}
|
|
</ScrollView>
|
|
</Page>
|
|
```
|
|
### Creating a ScrollView
|
|
<snippet id='article-creating-scrollview'/>
|