瀏覽代碼

Add ContextualMenu methods to iOS

Guy Carmeli 8 年之前
父節點
當前提交
cb5554c587
共有 1 個檔案被更改,包括 11 行新增1 行删除
  1. 11
    1
      src/deprecated/platformSpecificDeprecated.ios.js

+ 11
- 1
src/deprecated/platformSpecificDeprecated.ios.js 查看文件

555
   }
555
   }
556
 }
556
 }
557
 
557
 
558
+function showContextualMenu() {
559
+  // Android only
560
+}
561
+
562
+function dismissContextualMenu() {
563
+  // Android only
564
+}
565
+
558
 export default {
566
 export default {
559
   startTabBasedApp,
567
   startTabBasedApp,
560
   startSingleScreenApp,
568
   startSingleScreenApp,
576
   navigatorToggleTabs,
584
   navigatorToggleTabs,
577
   navigatorSetTabBadge,
585
   navigatorSetTabBadge,
578
   navigatorSwitchToTab,
586
   navigatorSwitchToTab,
579
-  navigatorToggleNavBar
587
+  navigatorToggleNavBar,
588
+  showContextualMenu,
589
+  dismissContextualMenu
580
 };
590
 };