From da7c99c73bcdeb64c1238d537740825efdc24b89 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sat, 23 Jul 2016 23:30:08 -0700 Subject: [PATCH] Added unselectedTintColor prop to TabBarIOS (#10251) Per https://facebook.github.io/react-native/docs/tabbarios.html#props --- react-native/react-native.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/react-native/react-native.d.ts b/react-native/react-native.d.ts index 74a86e27b7..0ffc6763a7 100644 --- a/react-native/react-native.d.ts +++ b/react-native/react-native.d.ts @@ -3575,6 +3575,11 @@ declare namespace __React { * A Boolean value that indicates whether the tab bar is translucent */ translucent?: boolean + + /** + * Color of text on unselected tabs + */ + unselectedTintColor?: string } export interface TabBarIOSStatic extends React.ComponentClass {