UNPKG

react-native-crossfade-image

Version:

React Native component to update image source with crossfade transition effect

10 lines (7 loc) 260 B
import { Image, ImageSourcePropType } from 'react-native'; export function isEqual(one: ImageSourcePropType, two?: ImageSourcePropType) { if (!two) { return false; } return Image.resolveAssetSource(one).uri === Image.resolveAssetSource(two).uri; }