|
@@ -130,7 +130,7 @@ On **Android**, Visibility can be toggled dynamically using the `mergeOptions` c
|
130
|
130
|
|
131
|
131
|
```js
|
132
|
132
|
Navigation.mergeOptions(componentId, {
|
133
|
|
- bottomTas: visible: false,
|
|
133
|
+ bottomTabs: visible: false,
|
134
|
134
|
...Platform.select({ android: { drawBehind: true } })
|
135
|
135
|
});
|
136
|
136
|
```
|
|
@@ -141,7 +141,7 @@ On **both** platforms visibility can be changed when pushing screens into a stac
|
141
|
141
|
Navigation.push(componentId, {
|
142
|
142
|
component: {
|
143
|
143
|
name: 'pushedScreen',
|
144
|
|
- options: { bottomTas: visible: false }
|
|
144
|
+ options: { bottomTabs: visible: false }
|
145
|
145
|
}
|
146
|
146
|
});
|
147
|
147
|
```
|