UNPKG

react-native-paper

Version:
9 lines 281 B
import { Animated } from 'react-native'; import useLazyRef from './useLazyRef'; export default function useAnimatedValue(initialValue) { const { current } = useLazyRef(() => new Animated.Value(initialValue)); return current; } //# sourceMappingURL=useAnimatedValue.js.map