Skip to content

Commit

Permalink
ScrollView zoom is not supported on Android (#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkbasic authored and charpeni committed Apr 7, 2019
1 parent 90738b4 commit d448bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/using-a-scrollview.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ AppRegistry.registerComponent(

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](viewpagerandroid.md) component.

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.
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](using-a-listview.md) next.

0 comments on commit d448bec

Please sign in to comment.