浏览代码

Update layout-types.md

Guy Carmeli 6 年前
父节点
当前提交
c4cf61d318
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      docs/docs/layout-types.md

+ 2
- 2
docs/docs/layout-types.md 查看文件

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
 ```