Browse Source

Update layout-types.md

Guy Carmeli 6 years ago
parent
commit
c4cf61d318
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      docs/docs/layout-types.md

+ 2
- 2
docs/docs/layout-types.md View File

130
 
130
 
131
 ```js
131
 ```js
132
 Navigation.mergeOptions(componentId, {
132
 Navigation.mergeOptions(componentId, {
133
-  bottomTas: visible: false,
133
+  bottomTabs: visible: false,
134
   ...Platform.select({ android: { drawBehind: true } })
134
   ...Platform.select({ android: { drawBehind: true } })
135
 });
135
 });
136
 ```
136
 ```
141
 Navigation.push(componentId, {
141
 Navigation.push(componentId, {
142
 	component: {
142
 	component: {
143
 	  name: 'pushedScreen',
143
 	  name: 'pushedScreen',
144
-	  options: { bottomTas: visible: false }
144
+	  options: { bottomTabs: visible: false }
145
 	}
145
 	}
146
   });
146
   });
147
 ```
147
 ```