From 1dfd9af698d91f06aaf52d0a502d790a6cba403a Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 1 Jul 2019 14:02:44 +0000 Subject: [PATCH] Deploy website Deploy website version based on 14fd038eb92981d259881e0cbc6f1fd50e73dd63 --- docs/next/using-a-scrollview.html | 2 +- docs/next/using-a-scrollview/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/next/using-a-scrollview.html b/docs/next/using-a-scrollview.html index f4fc476e072..4c4f961c2d6 100644 --- a/docs/next/using-a-scrollview.html +++ b/docs/next/using-a-scrollview.html @@ -121,7 +121,7 @@ AppRegistry.registerComponent( () => IScrolledDownAndWhatHappenedNextShockedMe); -

ScrollViews 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 component.

+

ScrollViews 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 ViewPager component.

On iOS a ScrollView with a single item can be used to allow the user to zoom content. Set up the maximumZoomScale and minimumZoomScale props and your user will be able to use pinch and expand gestures to zoom in and out.

The ScrollView works best to present a small amount of things of a limited size. All the elements and views of a ScrollView are rendered, even if they are not currently shown on the screen. If you have a long list of more items than can fit on the screen, you should use a FlatList instead. So let's learn about list views next.

Handling TouchesUsing List Views