Files
2016-07-06 16:09:11 +03:00

21 lines
502 B
Markdown

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