From f252adc8afa5b1d652f403efb31ff5c8d2f6c272 Mon Sep 17 00:00:00 2001 From: "satyajit.happy" Date: Thu, 6 Jun 2019 12:42:52 +0200 Subject: [PATCH] chore: fix snapshots --- packages/stack/src/types.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/stack/src/types.tsx b/packages/stack/src/types.tsx index c2f3c87d..62f79c66 100644 --- a/packages/stack/src/types.tsx +++ b/packages/stack/src/types.tsx @@ -63,13 +63,13 @@ export type HeaderScene = { export type HeaderOptions = { headerTitle?: string; headerTitleStyle?: StyleProp; + headerTitleContainerStyle?: StyleProp; headerTintColor?: string; headerTitleAllowFontScaling?: boolean; headerBackAllowFontScaling?: boolean; headerBackTitle?: string; headerBackTitleStyle?: StyleProp; headerTruncatedBackTitle?: string; - headerTitleContainerStyle?: StyleProp; headerLeft?: (props: HeaderBackButtonProps) => React.ReactNode; headerLeftContainerStyle?: StyleProp; headerRight?: () => React.ReactNode; @@ -117,7 +117,7 @@ export type SceneDescriptor = { export type HeaderBackButtonProps = { disabled?: boolean; - onPress?: () => void; + onPress: () => void; pressColorAndroid?: string; backImage?: (props: { tintColor: string }) => React.ReactNode; tintColor?: string;