From 931c4410ca4edf1daeccd5bd372d6607cf9520c0 Mon Sep 17 00:00:00 2001 From: headlessme Date: Tue, 14 Jun 2016 16:49:24 +0100 Subject: [PATCH] pass type and animationType to DrawerControllerIOS in startSingleScreenApp --- src/platformSpecific.ios.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/platformSpecific.ios.js b/src/platformSpecific.ios.js index b1228df9877..5c9ded25256 100644 --- a/src/platformSpecific.ios.js +++ b/src/platformSpecific.ios.js @@ -100,7 +100,10 @@ function startSingleScreenApp(params) { passPropsLeft={{navigatorID: navigatorID}} componentRight={params.drawer.right ? params.drawer.right.screen : undefined} passPropsRight={{navigatorID: navigatorID}} - disableOpenGesture={params.drawer.disableOpenGesture}> + disableOpenGesture={params.drawer.disableOpenGesture} + type={params.drawer.type ? params.drawer.type : undefined} + animationType={params.drawer.animationType ? params.drawer.animationType : undefined} + > {this.renderBody()} );