import * as React from 'react'; import { Alert } from 'react-native'; import { ContextMenuView } from 'react-native-ios-context-menu'; import { ContextMenuCard } from '../components/ContextMenuCard'; import type { ContextMenuExampleProps } from './SharedExampleTypes'; export function ContextMenuViewExample09(props: ContextMenuExampleProps) { return ( { switch (nativeEvent.actionKey) { case 'save': Alert.alert('saving...'); break; case 'like': Alert.alert('liking...'); break; case 'play': Alert.alert('playing...'); break; }; }} > ); };