UNPKG

@react-navigation/stack

Version:

Stack navigator component for iOS and Android with animated transitions and gestures

10 lines 396 B
import * as React from 'react'; import StackGestureRefContext from './GestureHandlerRefContext'; export default function useGestureHandlerRef() { const ref = React.useContext(StackGestureRefContext); if (ref === undefined) { throw new Error("Couldn't find a ref for gesture handler. Are you inside a screen in Stack?"); } return ref; } //# sourceMappingURL=useGestureHandlerRef.js.map