From fd82d9f380f2912610b2de67d7321b5e5d520d5f Mon Sep 17 00:00:00 2001 From: Danilo Figueiredo Date: Fri, 6 Nov 2020 07:57:58 +0000 Subject: [PATCH] docs: fixed navigator example link (by @grifotv) --- docs/react-navigation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react-navigation.md b/docs/react-navigation.md index 36e419a38..65363695f 100644 --- a/docs/react-navigation.md +++ b/docs/react-navigation.md @@ -7,4 +7,4 @@ However, there are some tricks has to be follow to enable both libraries to work - You need to override `safeAreaInsets`, by default `React Navigation` add the safe area insets to all its navigators, but since your navigator will properly won't cover full screen, you will need to override it and set it to `0`. - You need to override `headerLeft`, due to bottom sheet wrapping the content with `TapGestureHandler` & `PanGestureHandler`, you will need to wrap the header left button with `TouchableOpacity` that this library provide to allow it working. -For more details regarding the implementation, please have a look at the [Navigator Example](../example/src/screens/NavigatorExample.tsx). \ No newline at end of file +For more details regarding the implementation, please have a look at the [Navigator Example](../example/src/screens/advanced/NavigatorExample.tsx).