diff --git a/docs/known-issues.html b/docs/known-issues.html index 93269e89c02..f03185fe1ad 100644 --- a/docs/known-issues.html +++ b/docs/known-issues.html @@ -11,7 +11,7 @@ Dialog Intent Media Pasteboard -Alert

Some props are only supported on one platform #

There are properties that work on one platform only, either because they can inherently only be supported on that platform or because they haven't been implemented on the other platforms yet. All of these are annotated with @platform in JS docs and have a small badge next to them on the website. See e.g. Image.

Platform parity #

There are known cases where the API between iOS and Android could be made more consistent:

Publishing modules on Android #

There is currently no easy way of publishing custom native modules on Android. Smooth work flow for contributors is important and this will be looked at very closely after the initial Open Source release. Of course the aim will be to streamline and optimize the process between iOS and Android as much as possible.

Overlay view with opacity of 0 cannot be clicked through #

There is a noted difference in the handling of Views with an opacity of 0 between iOS and Android. While iOS will allow these views to be clicked through and the View below will receive the touch input, for Android the touch will be blocked. This can be demonstrated in this example where it will only be possible to click the touchable on iOS.

<View style={{flex: 1}}> +Alert

Some props are only supported on one platform #

There are properties that work on one platform only, either because they can inherently only be supported on that platform or because they haven't been implemented on the other platforms yet. All of these are annotated with @platform in JS docs and have a small badge next to them on the website. See e.g. Image.

Platform parity #

There are known cases where the API between iOS and Android could be made more consistent:

Publishing modules on Android #

There is currently no easy way of publishing custom native modules on Android. Smooth work flow for contributors is important and this will be looked at very closely after the initial Open Source release. Of course the aim will be to streamline and optimize the process between iOS and Android as much as possible.

Overlay view with opacity of 0 cannot be clicked through #

There is a noted difference in the handling of Views with an opacity of 0 between iOS and Android. While iOS will allow these views to be clicked through and the View below will receive the touch input, for Android the touch will be blocked. This can be demonstrated in this example where it will only be possible to click the touchable on iOS.

<View style={{flex: 1}}> <TouchableOpacity onPress={() => alert('hi!')}> <Text>HELLO!</Text> </TouchableOpacity>