diff --git a/docs/handling-touches.md b/docs/handling-touches.md index c60476d035a..c339e976e07 100644 --- a/docs/handling-touches.md +++ b/docs/handling-touches.md @@ -172,3 +172,7 @@ const styles = StyleSheet.create({ ## Scrolling and swiping Gestures commonly used on devices with touchable screens include swipes and pans. These allow the user to scroll through a list of items, or swipe through pages of content. For these, check out the [ScrollView](scrollview.md) Core Component. + +## Known issues + +- [react-native#29308](https://github.com/facebook/react-native/issues/29308#issuecomment-792864162): The touch area never extends past the parent view bounds and on Android negative margin is not supported. diff --git a/docs/style.md b/docs/style.md index 2dec53a5e12..97f27400d2b 100644 --- a/docs/style.md +++ b/docs/style.md @@ -46,3 +46,7 @@ One common pattern is to make your component accept a `style` prop which in turn There are a lot more ways to customize the text style. Check out the [Text component reference](text.md) for a complete list. Now you can make your text beautiful. The next step in becoming a style expert is to [learn how to control component size](height-and-width.md). + +## Known issues + +- [react-native#29308](https://github.com/facebook/react-native/issues/29308#issuecomment-792864162): In some cases React Native does not match how CSS works on the web, for example the touch area never extends past the parent view bounds and on Android negative margin is not supported.