From e25f40bd4baf559c108ca60c53c53843473b69d2 Mon Sep 17 00:00:00 2001 From: fattahmuhyiddeen Date: Mon, 12 Mar 2018 12:22:29 +0800 Subject: [PATCH] Drawer not overlay certain component in android Fix drawer does not overlay certain component in android --- src/Drawer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Drawer.js b/src/Drawer.js index 20f5e04..eabf01b 100644 --- a/src/Drawer.js +++ b/src/Drawer.js @@ -346,7 +346,8 @@ export default class Drawer extends Component { getContainerStyle = () => ({ // Move the view below others if not open or moving // to not block gesture handlers on other views - zIndex: this.state.pulling || this.state.open ? 1 : -1, + //zIndex: this.state.pulling || this.state.open ? 1 : -1, + zIndex: 9999999 }); }