diff --git a/docs/next/drawerlayoutandroid.html b/docs/next/drawerlayoutandroid.html index b3712eabbe5..c3d5199f827 100644 --- a/docs/next/drawerlayoutandroid.html +++ b/docs/next/drawerlayoutandroid.html @@ -148,25 +148,32 @@ export default App;
Inherits View Props.
-renderNavigationViewThe navigation view that will be rendered to the side of the screen and can be pulled in.
+drawerBackgroundColorSpecifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:
return <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)" />;
+
| Type | Required |
|---|---|
| function | Yes |
| color | No |
onDrawerCloseFunction called whenever the navigation view has been closed.
+drawerLockModeSpecifies the lock mode of the drawer. The drawer can be locked in 3 states:
+openDrawer/closeDrawer).| Type | Required |
|---|---|
| function | No |
| enum('unlocked', 'locked-closed', 'locked-open') | No |
drawerLockModeSpecifies the lock mode of the drawer. The drawer can be locked in 3 states:
-openDrawer/closeDrawer).onDrawerCloseFunction called whenever the navigation view has been closed.
| Type | Required |
|---|---|
| enum('unlocked', 'locked-closed', 'locked-open') | No |
| function | No |
drawerBackgroundColorSpecifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:
return <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)" />;
-
+renderNavigationViewThe navigation view that will be rendered to the side of the screen and can be pulled in.
| Type | Required |
|---|---|
| color | No |
| function | Yes |
openDrawer()openDrawer();
-
-Opens the drawer.
-closeDrawer()closeDrawer();
Closes the drawer.
-