├── .expo-shared └── assets.json ├── .github └── FUNDING.yml ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── gorhom.png ├── package.json ├── patches └── @react-navigation+stack+6.0.7.patch ├── preview.gif ├── src ├── components │ ├── Button.tsx │ └── Item.tsx ├── hooks │ ├── useScrollableModalGestureInteraction.ts │ └── useScrollableModalGestureInteractionReanimated.ts └── screens │ ├── Home.tsx │ ├── Modal.tsx │ ├── ScrollableModalCallbacks.tsx │ └── ScrollableModalReanimated.tsx ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/babel.config.js -------------------------------------------------------------------------------- /gorhom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/gorhom.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/package.json -------------------------------------------------------------------------------- /patches/@react-navigation+stack+6.0.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/patches/@react-navigation+stack+6.0.7.patch -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/preview.gif -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/components/Item.tsx -------------------------------------------------------------------------------- /src/hooks/useScrollableModalGestureInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/hooks/useScrollableModalGestureInteraction.ts -------------------------------------------------------------------------------- /src/hooks/useScrollableModalGestureInteractionReanimated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/hooks/useScrollableModalGestureInteractionReanimated.ts -------------------------------------------------------------------------------- /src/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/screens/Home.tsx -------------------------------------------------------------------------------- /src/screens/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/screens/Modal.tsx -------------------------------------------------------------------------------- /src/screens/ScrollableModalCallbacks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/screens/ScrollableModalCallbacks.tsx -------------------------------------------------------------------------------- /src/screens/ScrollableModalReanimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/src/screens/ScrollableModalReanimated.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-navigation-scrollable-modal/HEAD/yarn.lock --------------------------------------------------------------------------------