UNPKG

react-native-crossfade-image

Version:

React Native component to update image source with crossfade transition effect

13 lines (9 loc) 280 B
import { useEffect, useRef } from 'react'; import { ImageSourcePropType } from 'react-native'; export const usePrevious = (value: ImageSourcePropType) => { const ref = useRef<ImageSourcePropType>(); useEffect(() => { ref.current = value; }); return ref.current; };