From e9a97342811bdce506f01b0bdbe984cb01b84c46 Mon Sep 17 00:00:00 2001 From: Evan Cloutier <9866928+evancloutier@users.noreply.github.com> Date: Mon, 5 Aug 2019 16:06:01 -0400 Subject: [PATCH] Add missing keyboardHidesTabBar declaration (#37356) Adds a missing attribute definition according to what is defined in the tabs project here: https://github.com/react-navigation/tabs/blob/master/src/views/BottomTabBar.js#L24 --- types/react-navigation/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-navigation/index.d.ts b/types/react-navigation/index.d.ts index 0fcc92a429..2a0a22c8b1 100644 --- a/types/react-navigation/index.d.ts +++ b/types/react-navigation/index.d.ts @@ -972,6 +972,7 @@ export interface TabViewConfig { activeBackgroundColor?: string; inactiveTintColor?: string; inactiveBackgroundColor?: string; + keyboardHidesTabBar?: boolean; showLabel?: boolean; style?: StyleProp; labelStyle?: StyleProp;