Browse Source

Add ContextualMenu methods to iOS

Guy Carmeli 8 years ago
parent
commit
cb5554c587
1 changed files with 11 additions and 1 deletions
  1. 11
    1
      src/deprecated/platformSpecificDeprecated.ios.js

+ 11
- 1
src/deprecated/platformSpecificDeprecated.ios.js View File

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