Files
NativeScript/apps/tests/ui/scroll-view/scroll-view.md
Nikolay Tsonev fd7289a4c9 modify snippets
2016-04-15 16:27:56 +03:00

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'/>