File tree 3 files changed +39
-3
lines changed
content/docs/en/elements/components
3 files changed +39
-3
lines changed Original file line number Diff line number Diff line change 1
- dist
2
- node_modules
1
+ .idea /
2
+ dist /
3
+ node_modules /
3
4
content /.links_checked.json
4
5
content /links_failed.json
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Metalsmith(cwd)
62
62
'elements:action-bar' ,
63
63
'elements:components' ,
64
64
'elements:dialogs'
65
- ]
65
+ ] ;
66
66
67
67
if ( a . fileName ) {
68
68
return a . fileName . localeCompare ( b . fileName ) ;
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : ScrollView
3
+ apiRef : https://docs.nativescript.org/api-reference/classes/_ui_scroll_view_.scrollview
4
+ contributors : [eddyverbruggen]
5
+ ---
6
+
7
+ The ScrollView component allows you to show scrollable content.
8
+
9
+ ---
10
+
11
+ ``` html
12
+ <ScrollView orientation =" horizontal" >
13
+ <StackLayout orientation =" horizontal" >
14
+ <Label text =" this" />
15
+ <Label text =" text" />
16
+ <Label text =" scrolls" />
17
+ <Label text =" horizontally" />
18
+ <Label text =" if necessary" />
19
+ </StackLayout >
20
+ </ScrollView >
21
+ ```
22
+
23
+ [ > screenshots for=ScrollView <]
24
+
25
+ ## Props
26
+
27
+ | name | type | description |
28
+ | ------| ------| -------------|
29
+ | ` orientation ` | ` String ` | Either ` horizontal ` or ` vertical ` . Default ` vertical ` .
30
+
31
+ ## Events
32
+
33
+ | name | description |
34
+ | ------| -------------|
35
+ | ` scroll ` | Emitted when a scroll event occurs
You can’t perform that action at this time.
0 commit comments