/* eslint-disable react-native/no-inline-styles */ import * as React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { ContextMenuView } from 'react-native-ios-context-menu'; import type { ExampleItemProps } from './SharedExampleTypes'; import { ContextMenuCard } from '../components/ContextMenuCard'; export function ContextMenuAuxPreviewExample08(props: ExampleItemProps) { return ( ( Always Top )} previewConfig={{ previewType: 'CUSTOM', previewSize: 'INHERIT', }} renderPreview={() => ( Context Menu Preview )} > ); }; const styles = StyleSheet.create({ previewRootContainer: { paddingHorizontal: 10, paddingVertical: 8, backgroundColor: 'white', minWidth: 300, minHeight: 200, alignItems: 'center', justifyContent: 'center', }, auxRootContainer: { backgroundColor: 'white', borderRadius: 10, padding: 10, width: 200, }, textLabel: { fontSize: 18, fontWeight: '600', }, });