diff --git a/docs/docs/layout-types.md b/docs/docs/layout-types.md index 0da2fa4d9c3..0591102d28f 100644 --- a/docs/docs/layout-types.md +++ b/docs/docs/layout-types.md @@ -130,8 +130,10 @@ On **Android**, Visibility can be toggled dynamically using the `mergeOptions` c ```js Navigation.mergeOptions(componentId, { - bottomTabs: visible: false, - ...Platform.select({ android: { drawBehind: true } }) + bottomTabs: { + visible: false, + ...Platform.select({ android: { drawBehind: true } }) + }, }); ```