/* eslint-disable react-native/no-inline-styles */ import * as React from 'react'; import { Alert, View, Text, StyleSheet } from 'react-native'; import { ContextMenuView } from 'react-native-ios-context-menu'; import type { ContextMenuExampleProps } from './SharedExampleTypes'; import { ContextMenuCard } from '../components/ContextMenuCard'; export function ContextMenuViewExample19(props: ContextMenuExampleProps) { return ( ( Hello World )} onPressMenuItem={({nativeEvent}) => { Alert.alert( 'onPressMenuItem Event', `actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}` ); }} > ); }; const styles = StyleSheet.create({ auxRootContainer: { backgroundColor: 'white', }, textLabel: { fontWeight: 'bold', borderRadius: 10, padding: 10, }, });