mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-23 17:16:52 +08:00
21 lines
502 B
Markdown
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%}
|