Update KnownIssues

Reviewed By: mkonicek

Differential Revision:D3075189
Ninja: oss only

fb-gh-sync-id: a838bf941f2de2cb5820f3d2de100bbd5cbf883a
shipit-source-id: a838bf941f2de2cb5820f3d2de100bbd5cbf883a
This commit is contained in:
Martin Konicek 2016-03-20 17:26:44 -07:00 committed by Facebook Github Bot 1
parent 032b37080c
commit ec6770551c

View File

@ -13,19 +13,18 @@ It's [currently not possible](https://github.com/facebook/react-devtools/issues/
However, you can still use the Console feature of the devtools, and debugging JavaScript with breakpoints works too. To use the console, make sure to select the `⚙debuggerWorker.js` entry in the devtools dropdown that by default is set to `<top frame>`. However, you can still use the Console feature of the devtools, and debugging JavaScript with breakpoints works too. To use the console, make sure to select the `⚙debuggerWorker.js` entry in the devtools dropdown that by default is set to `<top frame>`.
### Missing Modules and Native Views ### Missing Android Modules and Views
The work on React Native for Android started later than React Native for iOS. Not all of the views present on iOS have been released on Android yet. The work on React Native for Android started later than React Native for iOS. Most views and modules are now available on Android, with the following exceptions:
#### Views #### Views
- Maps - Please use Leland Richardson's [react-native-maps](https://github.com/lelandrichardson/react-native-maps) as it is more feature-complete than our internal implementation at fb. - Maps - Please use Leland Richardson's [react-native-maps](https://github.com/lelandrichardson/react-native-maps) as it is more feature-complete than our internal implementation.
- Slider (also known as SeekBar) - Android Slider (also known as SeekBar)
#### Modules #### Modules
- Media - Android Push Notifications - Please use a [3rd party module](https://js.coach/react-native?filters=android&search=gcm).
- PushNotificationIOS
### Some props are only supported on one platform ### Some props are only supported on one platform
@ -39,12 +38,6 @@ There are known cases where the APIs could be made more consistent across iOS an
- `ActivityIndicator` could render a native spinning indicator on both platforms (currently this is done using `ActivityIndicatorIOS` on iOS and `ProgressBarAndroid` on Android). - `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`). - `ProgressBar` could render a horizontal progress bar on both platforms (on iOS this is `ProgressViewIOS`, on Android it's `ProgressBarAndroid`).
### Using 3rd-party native modules
There are many awesome 3rd-party modules: [JS.coach](https://js.coach/react-native)
Adding these to your apps should be made simpler. Here's [an example](https://github.com/apptailor/react-native-google-signin) how this is done currently.
### The `overflow` style property defaults to `hidden` and cannot be changed on Android ### The `overflow` style property defaults to `hidden` and cannot be changed on Android
This is a result of how Android rendering works. This feature is not being worked on as it would be a significant undertaking and there are many more important tasks. This is a result of how Android rendering works. This feature is not being worked on as it would be a significant undertaking and there are many more important tasks.