119dc08ecS猫头猫import React from 'react'; 24060c00aS猫头猫import {Image, ImageProps} from 'react-native'; 319dc08ecS猫头猫 419dc08ecS猫头猫interface IImageProps extends ImageProps { 529fe487bS猫头猫 uri?: string | null; 6*1119c2eaS猫头猫 emptySrc?: any; 719dc08ecS猫头猫} 819dc08ecS猫头猫export default function (props: Omit<IImageProps, 'source'>) { 91574be2bS猫头猫 const {uri, emptySrc} = props; 1019dc08ecS猫头猫 const source = uri 1119dc08ecS猫头猫 ? { 1219dc08ecS猫头猫 uri, 1319dc08ecS猫头猫 } 141574be2bS猫头猫 : emptySrc; 154060c00aS猫头猫 return <Image {...props} source={source} />; 1619dc08ecS猫头猫} 17