ソースを参照

bugfix: add support for drawer animation types

Ran Greenberg 8 年 前
コミット
c84a0cbfe8
共有1 個のファイルを変更した2 個の追加0 個の削除を含む
  1. 2
    0
      src/platformSpecific.ios.js

+ 2
- 0
src/platformSpecific.ios.js ファイルの表示

@@ -28,6 +28,8 @@ function startTabBasedApp(params) {
28 28
             componentRight={params.drawer.right ? params.drawer.right.screen : undefined}
29 29
             passPropsRight={{navigatorID: navigatorID}}
30 30
             disableOpenGesture={params.drawer.disableOpenGesture}
31
+            type={params.drawer.type ? params.drawer.type : undefined}
32
+            animationType={params.drawer.animationType ? params.drawer.animationType : undefined}
31 33
           >
32 34
             {this.renderBody()}
33 35
           </DrawerControllerIOS>