From d39565c14b659a8457e1fded1a6af327e00aeb18 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 10 Mar 2016 17:13:05 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/drawerlayoutandroid.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/next/docs/drawerlayoutandroid.html b/releases/next/docs/drawerlayoutandroid.html index 5facbf48457..79d2db76c1e 100644 --- a/releases/next/docs/drawerlayoutandroid.html +++ b/releases/next/docs/drawerlayoutandroid.html @@ -22,8 +22,8 @@ be set by the drawerWidth prop.

Example:

); },

Props #

drawerLockMode enum('unlocked', 'locked-closed', 'locked-open') #

Specifies the lock mode of the drawer. The drawer can be locked in 3 states: - unlocked (default), meaning that the drawer will respond (open/close) to touch gestures. -- locked closed, meaning that the drawer will stay closed and not respond to gestures. -- locked open, meaning that the drawer will stay opened and not respond to gestures. +- locked-closed, meaning that the drawer will stay closed and not respond to gestures. +- locked-open, meaning that the drawer will stay opened and not respond to gestures. The drawer may still be opened and closed programmatically (openDrawer/closeDrawer).

drawerPosition enum(DrawerConsts.DrawerPosition.Left, DrawerConsts.DrawerPosition.Right) #

Specifies the side of the screen from which the drawer will slide in.

drawerWidth number #

Specifies the width of the drawer, more precisely the width of the view that be pulled in from the edge of the window.

keyboardDismissMode enum('none', 'on-drag') #

Determines whether the keyboard gets dismissed in response to a drag. - 'none' (the default), drags do not dismiss the keyboard.