File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ const Tabs = createBottomTabNavigator({
447447``` js
448448< Tab .Navigator
449449 screenOptions= {{
450- tabBarPosition: isLargeScreen ? ' left' ? ' bottom' ,
450+ tabBarPosition: isLargeScreen ? ' left' : ' bottom' ,
451451 }}
452452>
453453```
@@ -465,7 +465,7 @@ You can also render a compact sidebar by placing the label below the icon. This
465465``` js
466466const Tabs = createBottomTabNavigator ({
467467 screenOptions: {
468- tabBarPosition: isLargeScreen ? ' left' ? ' bottom' ,
468+ tabBarPosition: isLargeScreen ? ' left' : ' bottom' ,
469469 tabBarVariant: isLargeScreen ? ' material' : ' uikit' ,
470470 tabBarLabelPosition: ' below-icon' ,
471471 },
Original file line number Diff line number Diff line change @@ -848,7 +848,7 @@ const Tabs = createBottomTabNavigator({
848848``` js
849849< Tab .Navigator
850850 screenOptions= {{
851- tabBarPosition: isLargeScreen ? ' left' ? ' bottom' ,
851+ tabBarPosition: isLargeScreen ? ' left' : ' bottom' ,
852852 }}
853853>
854854```
@@ -866,7 +866,7 @@ You can also render a compact sidebar by placing the label below the icon. This
866866``` js
867867const Tabs = createBottomTabNavigator ({
868868 screenOptions: {
869- tabBarPosition: isLargeScreen ? ' left' ? ' bottom' ,
869+ tabBarPosition: isLargeScreen ? ' left' : ' bottom' ,
870870 tabBarVariant: isLargeScreen ? ' material' : ' uikit' ,
871871 tabBarLabelPosition: ' below-icon' ,
872872 },
You can’t perform that action at this time.
0 commit comments