import { Platform } from 'react-native'; let contextMenuView: any; try { if (Platform.OS === 'ios' && Platform.Version >= 13) { contextMenuView = require('react-native-context-menu-view'); } else if (Platform.OS === 'android') { contextMenuView = require('react-native-context-menu-view'); } else { throw new Error(); } } catch { console.warn("react-native-context-menu-view not found. Actions won't work"); } export { contextMenuView };