diff --git a/versioned_docs/version-6.x/tab-based-navigation.md b/versioned_docs/version-6.x/tab-based-navigation.md index 1ddce383803..5f8634770a4 100755 --- a/versioned_docs/version-6.x/tab-based-navigation.md +++ b/versioned_docs/version-6.x/tab-based-navigation.md @@ -237,3 +237,25 @@ For example, React Navigation's tab navigator takes care of handling the Android ## A tab navigator contains a stack and you want to hide the tab bar on specific screens [See the documentation here](hiding-tabbar-in-screens.md) + +## A tab navigator contains a stack and you want to use KeyboardAvoidingView to prevent hidden TextInput + +Make sure you to wrap KeyboardAvoidingView around the main tab navigator + +```js +function TabNavigator() { + return ( + + + + + + ); +} +```