react-native-navigation-bottom-sheet
Version:
A performant customizable bottom sheet component made on top of wix react-native-navigation library.
23 lines (15 loc) • 798 B
JavaScript
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import Animated from 'react-native-reanimated';
/**
* Namespace for animated values associated with the bottom sheet.
*/
class AnimatedStoreSheet {
/* Animated value mapped to _dragY from _scrollY */
/* Value of a current speed of dragging */
static init() {}
}
_defineProperty(AnimatedStoreSheet, "_scrollToDragVal", new Animated.Value(0));
_defineProperty(AnimatedStoreSheet, "_velocityY", new Animated.Value(0));
_defineProperty(AnimatedStoreSheet, "_snappedToTop", new Animated.Value(0));
export { AnimatedStoreSheet };
//# sourceMappingURL=AnimatedStoreSheet.js.map