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
   }
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
 };