From 54c5a22513877454d35434925acb40b4d3adb6b4 Mon Sep 17 00:00:00 2001 From: Akshat Giri Date: Sun, 19 Aug 2018 12:21:05 -0700 Subject: [PATCH] Added indicatorStyle to 'Tabs' props. 'Tabs' docs was missing indicatorStyle prop which is used to change the style on the indicator line at the bottom of the active tab. --- docs/API.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/API.md b/docs/API.md index b6777a2b3..dbb0e1ead 100644 --- a/docs/API.md +++ b/docs/API.md @@ -104,6 +104,8 @@ Can use all `props` listed above in `` as `` is syntatic sugar for | `tabBarOnPress`     | `function` | | Custom tab bar icon press. | | `backToInitial`     | `boolean` | `false` | Back to initial screen on focused tab if tab icon was tapped. | | `upperCaseLabel`     | `boolean` | `true` | Whether to make label uppercase, default is true. | +| `indicatorStyle`     | `object` | | Override the style for active tab indicator. | + ## Stack (``) A component to group Scenes together for its own stack based navigation. Using this will create a separate navigator for this stack, so expect two navbars to appear unless you add `hideNavBar`.