react-native-ios-context-menu/example/src/examples/ContextMenuAuxPreviewExample09.tsx
Dominic Go 4270b49ca0 🐞 Fix: Typo in renderAuxillaryPreview
Summary: Rename `renderAuxillaryPreview` to `renderAuxiliaryPreview`.
2022-06-23 07:58:23 +08:00

77 lines
2.0 KiB
TypeScript

/* 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 { ContextMenuExampleProps } from './SharedExampleTypes';
import { ContextMenuCard } from '../components/ContextMenuCard';
export function ContextMenuAuxPreviewExample09(props: ContextMenuExampleProps) {
return (
<ContextMenuView
style={props.style}
menuConfig={{
menuTitle: 'ContextMenuAuxPreviewExample09',
}}
auxiliaryPreviewConfig={{
transitionEntranceDelay: 'RECOMMENDED',
anchorPosition: 'bottom',
}}
renderAuxiliaryPreview={() => (
<View style={[styles.auxRootContainer, {
alignItems: 'center',
justifyContent: 'center',
}]}>
<Text style={styles.textLabel}>
Always Bottom
</Text>
</View>
)}
previewConfig={{
previewType: 'CUSTOM',
previewSize: 'INHERIT',
}}
renderPreview={() => (
<View style={styles.previewRootContainer}>
<Text style={styles.textLabel}>
Context Menu Preview
</Text>
</View>
)}
>
<ContextMenuCard
index={props.index}
title={'ContextMenuAuxPreviewExample09'}
subtitle={'EXPERIMENTAL - Aux. Preview'}
description={[
`Basic 'ContextMenuView' w/ a auxillary preview that's anchored to the bottom.`,
`anchorPosition: 'bottom'`
]}
/>
</ContextMenuView>
);
};
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',
},
});