import { Image, ImageProps } from 'expo-image'; import * as React from 'react'; import { Animated, Dimensions, ImageProps as RNImageProps, StyleSheet, Text, View, Image as RNImage, } from 'react-native'; import { Colors } from '../../constants'; import ImageTestView from './ImageTestView'; import { resolveProps } from './resolveProps'; type ImageTest = { name: string; props: ImageProps | RNImageProps; loadOnDemand?: boolean; testInformation?: string; }; type PropsType = { test: ImageTest; animValue?: Animated.Value; }; export default function ImageTestListItem({ test, animValue }: PropsType) { const imageProps = resolveProps(test.props, animValue); return ( {test.name} ); } const styles = StyleSheet.create({ container: { height: 160, paddingHorizontal: 10, paddingVertical: 5, backgroundColor: 'white', borderBottomColor: Colors.border, borderBottomWidth: StyleSheet.hairlineWidth, }, header: { height: 32, flexDirection: 'row', alignItems: 'center', }, title: { fontSize: 15, color: Colors.disabled, }, content: { flex: 1, flexDirection: 'row', justifyContent: 'space-around', alignItems: 'center', }, spacer: { width: 10, }, image: { width: (Dimensions.get('window').width - 30) / 2, height: 160 - 10 - 32, }, });