11574be2bS猫头猫import React from 'react'; 21574be2bS猫头猫import FastImage, {FastImageProps} from 'react-native-fast-image'; 31574be2bS猫头猫 41574be2bS猫头猫interface IFastImageProps { 51574be2bS猫头猫 style: FastImageProps['style']; 61574be2bS猫头猫 defaultSource?: FastImageProps['defaultSource']; 71574be2bS猫头猫 emptySrc?: number; 81574be2bS猫头猫 uri?: string; 91574be2bS猫头猫} 101574be2bS猫头猫export default function (props: IFastImageProps) { 111574be2bS猫头猫 const {style, emptySrc, uri, defaultSource} = props ?? {}; 121574be2bS猫头猫 const source = uri 131574be2bS猫头猫 ? { 141574be2bS猫头猫 uri, 151574be2bS猫头猫 } 161574be2bS猫头猫 : emptySrc; 171574be2bS猫头猫 return ( 181574be2bS猫头猫 <FastImage 191574be2bS猫头猫 style={style} 201574be2bS猫头猫 source={source} 21*4060c00aS猫头猫 defaultSource={defaultSource} 22*4060c00aS猫头猫 /> 231574be2bS猫头猫 ); 241574be2bS猫头猫} 25