From ef4570ef0ab345157cbd8adfd9eeb2bb9ff00480 Mon Sep 17 00:00:00 2001 From: Daniel van der Merwe Date: Thu, 10 May 2018 15:59:44 -0400 Subject: [PATCH] SingleScreenApp can take an appStyle param (#25562) This is undocumented but works --- types/react-native-navigation/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/react-native-navigation/index.d.ts b/types/react-native-navigation/index.d.ts index 75c0d51be0..86b94bff44 100644 --- a/types/react-native-navigation/index.d.ts +++ b/types/react-native-navigation/index.d.ts @@ -64,6 +64,11 @@ export interface SingleScreenApp { drawer?: Drawer; passProps?: object; animationType?: 'none' | 'slide-down' | 'fade'; + appStyle?: { + orientation?: 'auto' | 'landscape' | 'portrait'; + backButtonImage?: any; + hideBackButtonTitle?: boolean; + }; } export interface Screen {