We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7fd580 commit ae77a22Copy full SHA for ae77a22
versioned_docs/version-8.x/bottom-tab-navigator.md
@@ -848,7 +848,7 @@ const Tabs = createBottomTabNavigator({
848
```js
849
<Tab.Navigator
850
screenOptions={{
851
- tabBarPosition: isLargeScreen ? 'left' ? 'bottom',
+ tabBarPosition: isLargeScreen ? 'left' : 'bottom',
852
}}
853
>
854
```
@@ -866,7 +866,7 @@ You can also render a compact sidebar by placing the label below the icon. This
866
867
const Tabs = createBottomTabNavigator({
868
screenOptions: {
869
870
tabBarVariant: isLargeScreen ? 'material' : 'uikit',
871
tabBarLabelPosition: 'below-icon',
872
},
0 commit comments