AndroidViewPager -> ViewPagerAndroid

Summary: Closes https://github.com/facebook/react-native/pull/5471

Reviewed By: svcscm

Differential Revision: D2854830

Pulled By: androidtrunkagent

fb-gh-sync-id: 59fc6db6cbb96c2a7b3b23295e470ffb251c39fa
This commit is contained in:
sunnylqm 2016-01-22 15:54:14 -08:00 committed by facebook-github-bot-9
parent f644af34ef
commit 5a5386414f
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ There are properties that work on one platform only, either because they can inh
There are known cases where the APIs could be made more consistent across iOS and Android:
- `<AndroidViewPager>` and `<ScrollView pagingEnabled={true}>` on iOS do a similar thing. We might want to unify them to `<ViewPager>`.
- `<ViewPagerAndroid>` and `<ScrollView pagingEnabled={true}>` on iOS do a similar thing. We might want to unify them to `<ViewPager>`.
- It might be possible to bring `LinkingIOS` and `IntentAndroid` closer together.
- `ActivityIndicator` could render a native spinning indicator on both platforms (currently this is done using `ActivityIndicatorIOS` on iOS and `ProgressBarAndroid` on Android).
- `ProgressBar` could render a horizontal progress bar on both platforms (on iOS this is `ProgressViewIOS`, on Android it's `ProgressBarAndroid`).