/* 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 { ExampleItemProps } from './SharedExampleTypes'; import { ContextMenuCard } from '../components/ContextMenuCard'; import { Colors } from 'react-native-ios-utilities'; export function ContextMenuAuxPreviewExample02(props: ExampleItemProps) { return ( ( Faster Transition )} onPressMenuItem={({nativeEvent}) => { Alert.alert( 'onPressMenuItem Event', `actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}` ); }} > ); }; const styles = StyleSheet.create({ auxRootContainer: { backgroundColor: 'white', borderRadius: 10, padding: 10, width: 200, }, textLabel: { fontSize: 18, fontWeight: '600', color: Colors.BLUE.A700, }, });