From 0c26f063dd3a6cb7bc796edc3ea72d2dff7bbc19 Mon Sep 17 00:00:00 2001 From: Mike VanBeneden Date: Tue, 28 Aug 2018 22:37:42 -0400 Subject: [PATCH] Add title to StackProps --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 1627af95d..2f1119dfa 100644 --- a/index.d.ts +++ b/index.d.ts @@ -127,7 +127,8 @@ interface StackProps extends React.Props { icon?: any; tintColor?: string; hideNavBar?: boolean; - titleStyle?: StyleProp; + title?: string; + titleStyle?: StyleProp; } interface StackStatic extends React.ComponentClass { }