fix broken link
Summary: Closes https://github.com/facebook/react-native/pull/8810 Differential Revision: D3570364 Pulled By: hramos fbshipit-source-id: 5b586878e35d30cc63b40c12a9cf3911fc00ff1d
This commit is contained in:
parent
f2d83a2552
commit
f4d614aa31
|
@ -52,11 +52,11 @@ In some cases, you may want to detect when a user presses and holds a view for a
|
||||||
|
|
||||||
## Scrolling lists and swiping views
|
## Scrolling lists and swiping views
|
||||||
|
|
||||||
A common pattern to many mobile apps is the scrollable list of items. Users interact with these using panning or swiping gestures. The [ScrollView](/react-native/docs/basics-component-scrollview.html) component displays a list of items that can be scrolled using these gestures.
|
A common pattern to many mobile apps is the scrollable list of items. Users interact with these using panning or swiping gestures. The [ScrollView](/react-native/docs/using-a-scrollview.html) component displays a list of items that can be scrolled using these gestures.
|
||||||
|
|
||||||
ScrollViews can scroll vertically or horizontally, and can be configured to allow paging through views using swiping gestures by using the `pagingEnabled` props. Swiping horizontally between views can also be implemented on Android using the [ViewPagerAndroid](/react-native/docs/viewpagerandroid.html) component.
|
ScrollViews can scroll vertically or horizontally, and can be configured to allow paging through views using swiping gestures by using the `pagingEnabled` props. Swiping horizontally between views can also be implemented on Android using the [ViewPagerAndroid](/react-native/docs/viewpagerandroid.html) component.
|
||||||
|
|
||||||
A [ListView](/react-native/docs/basics-component-listview.html) is a special kind of ScrollView that is best suited for displaying long vertical lists of items. It can also display section headers and footers, similar to `UITableView`s on iOS.
|
A [ListView](/react-native/docs/using-a-listview.html) is a special kind of ScrollView that is best suited for displaying long vertical lists of items. It can also display section headers and footers, similar to `UITableView`s on iOS.
|
||||||
|
|
||||||
### Pinch-to-zoom
|
### Pinch-to-zoom
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue