From 8fa331eed8986ec91e361d7918ffb4d2298fad50 Mon Sep 17 00:00:00 2001 From: Max InMoon Date: Fri, 9 Mar 2018 01:44:35 +0100 Subject: [PATCH] Update API.md: add upperCaseLabel in Tabs From [react-navigation doc](https://reactnavigation.org/docs/tab-navigator.html#tabbaroptions-for-tabbartop-default-tab-bar-on-android), `upperCaseLabel` allow us to disable the default uppercase for tab labels (Tested with `4.0.0-beta.28`) --- docs/API.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/API.md b/docs/API.md index bcad6ef84..bfa8050b1 100644 --- a/docs/API.md +++ b/docs/API.md @@ -99,6 +99,7 @@ Can use all `props` listed above in `` as `` is syntatic sugar for | `animationEnabled`     | `boolean` | `true` | Enable or disable tab swipe animation. | | `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. | ## 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`.