Files
NativeScript/tests/app/ui/scroll-view/scroll-view.md
Panayot Cankov e135c20b14 Rename the files
2016-05-26 14:30:25 +03:00

20 lines
484 B
Markdown

---
nav-title: "scroll-view How-To"
title: "scroll-view"
description: "Examples for using scroll-view"
previous_url: /ApiReference/ui/scroll-view/HOW-TO
---
# ScrollView
Using a ScrollView requires the ScrollView module.
<snippet id='article-require-scrollview-module'/>
### Declaring the ScrollView
``` XML
<Page>
<ScrollView>
{%raw%}<Image src="{{ someBigImageUrl }}" />{%endraw%}
</ScrollView>
</Page>
```
### Creating a ScrollView
<snippet id='article-creating-scrollview'/>