@devvie/bottom-sheet
Version:
The 😎smart , 📦tiny , and 🎗flexible bottom sheet your app craves 🚀
9 lines • 382 B
TypeScript
import { Animated } from 'react-native';
/**
* Convenience hook for abstracting/storing Animated values.
* Pass your initial number value, get an animated value back.
* @param {number} initialValue Initial animated value
*/
declare const useAnimatedValue: (initialValue?: number) => Animated.Value;
export default useAnimatedValue;
//# sourceMappingURL=useAnimatedValue.d.ts.map