72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
/* 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 ContextMenuAuxPreviewExample05(props: ContextMenuExampleProps) {
|
|
return (
|
|
<ContextMenuView
|
|
style={props.style}
|
|
menuConfig={{
|
|
menuTitle: 'ContextMenuAuxPreviewExample05',
|
|
menuItems: [{
|
|
actionKey : 'key-01',
|
|
actionTitle: 'Lorum ipsum',
|
|
}],
|
|
}}
|
|
// Align the aux. preview to the center of the context
|
|
// menu preview...
|
|
//
|
|
// 📝 Note: By default, this is set to: `stretchPreview`
|
|
auxiliaryPreviewConfig={{
|
|
alignmentHorizontal: 'previewCenter',
|
|
transitionEntranceDelay: 'RECOMMENDED',
|
|
}}
|
|
renderAuxiliaryPreview={() => (
|
|
<View style={[styles.auxRootContainer, {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}]}>
|
|
<Text style={styles.textLabel}>
|
|
Center
|
|
</Text>
|
|
</View>
|
|
)}
|
|
onPressMenuItem={({nativeEvent}) => {
|
|
Alert.alert(
|
|
'onPressMenuItem Event',
|
|
`actionKey: ${nativeEvent.actionKey} - actionTitle: ${nativeEvent.actionTitle}`
|
|
);
|
|
}}
|
|
>
|
|
<ContextMenuCard
|
|
index={props.index}
|
|
title={'ContextMenuAuxPreviewExample05'}
|
|
subtitle={'EXPERIMENTAL - Aux. Preview'}
|
|
description={[
|
|
`Basic 'ContextMenuView' w/ a auxillary preview xxx`,
|
|
`alignmentHorizontal: 'previewCenter'`
|
|
]}
|
|
/>
|
|
</ContextMenuView>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
auxRootContainer: {
|
|
backgroundColor: 'white',
|
|
borderRadius: 10,
|
|
padding: 10,
|
|
width: 200,
|
|
},
|
|
textLabel: {
|
|
fontSize: 18,
|
|
fontWeight: '600',
|
|
color: 'black',
|
|
},
|
|
}); |