Skip to content

Commit 083a052

Browse files
authored
Update drawer-based-navigation.md
1 parent 7dab955 commit 083a052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/drawer-based-navigation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ this.props.navigation.dispatch(DrawerActions.closeDrawer());
8585
this.props.navigation.dispatch(DrawerActions.toggleDrawer());
8686
```
8787

88-
If you would like to determine if drawer is open or closed, you can follow:
88+
If you would like to determine if drawer is open or closed, you can do the following:
8989

9090
```js
9191
const parent = this.props.navigation.dangerouslyGetParent();
9292
const isDrawerOpen = parent && parent.state && parent.state.isDrawerOpen;
93-
```
93+
```

0 commit comments

Comments
 (0)