├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_template.yaml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-close.yml │ ├── label-sponsors.yml │ ├── stale.yml │ └── website.yml ├── .gitignore ├── .huskyrc.json ├── .release-it.json ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── biome.json ├── commitlint.config.js ├── example ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── comment.png │ ├── favicon.png │ ├── icon.png │ ├── like.png │ ├── retweet.png │ ├── share.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package-lock.json ├── package.json ├── src │ ├── Dev.tsx │ ├── Main.tsx │ ├── components │ │ ├── button │ │ │ ├── Button.tsx │ │ │ └── index.ts │ │ ├── contactItem │ │ │ ├── ContactItem.tsx │ │ │ └── index.ts │ │ ├── contactList │ │ │ ├── ContactList.tsx │ │ │ ├── index.ts │ │ │ ├── styles.ts │ │ │ └── styles.web.ts │ │ ├── customBackground │ │ │ ├── CustomBackground.tsx │ │ │ └── index.ts │ │ ├── customFooter │ │ │ ├── CustomFooter.tsx │ │ │ └── index.ts │ │ ├── customHandle │ │ │ ├── CustomHandle.tsx │ │ │ └── index.ts │ │ ├── headerHandle │ │ │ ├── HeaderHandle.tsx │ │ │ └── index.ts │ │ └── searchHandle │ │ │ ├── SearchHandle.tsx │ │ │ └── index.ts │ ├── screens │ │ ├── advanced │ │ │ ├── BackdropExample.tsx │ │ │ ├── CustomBackgroundExample.tsx │ │ │ ├── CustomHandleExample.tsx │ │ │ ├── CustomThemeExample.tsx │ │ │ ├── DynamicSizingExample.tsx │ │ │ ├── FooterExample.tsx │ │ │ ├── KeyboardHandlingExample.tsx │ │ │ ├── PullToRefreshExample.tsx │ │ │ └── ShadowExample.tsx │ │ ├── basic │ │ │ └── BasicExamples.tsx │ │ ├── index.ts │ │ ├── integrations │ │ │ ├── NativeScreensExample.tsx │ │ │ ├── ViewPagerExample.tsx │ │ │ ├── flashlist │ │ │ │ ├── FlashListExample.tsx │ │ │ │ ├── TweetContent.tsx │ │ │ │ ├── data │ │ │ │ │ └── tweets.ts │ │ │ │ ├── index.ts │ │ │ │ └── models │ │ │ │ │ ├── Author.ts │ │ │ │ │ └── Tweet.ts │ │ │ ├── legendlist │ │ │ │ ├── LegendListExample.tsx │ │ │ │ ├── index.ts │ │ │ │ └── renderItem.tsx │ │ │ ├── map │ │ │ │ ├── BlurredBackground.tsx │ │ │ │ ├── BlurredHandle.tsx │ │ │ │ ├── LocationDetails.tsx │ │ │ │ ├── LocationDetailsBottomSheet.tsx │ │ │ │ ├── LocationItem.tsx │ │ │ │ ├── LocationListBottomSheet.tsx │ │ │ │ ├── MapExample.tsx │ │ │ │ └── Weather.tsx │ │ │ └── navigation │ │ │ │ ├── DummyScreen.tsx │ │ │ │ └── NavigatorExample.tsx │ │ ├── modal │ │ │ ├── BackdropExample.tsx │ │ │ ├── DetachedExample.tsx │ │ │ ├── DynamicSizingExample.tsx │ │ │ ├── SimpleExample.tsx │ │ │ ├── StackExample.tsx │ │ │ └── withModalProvider.tsx │ │ └── withGestureHandlerRoot.tsx │ ├── types.d.ts │ └── utilities │ │ ├── createMockData.ts │ │ └── transformOrigin.ts ├── tsconfig.json ├── web │ └── index.html └── webpack.config.js ├── lint-staged.config.js ├── mock.js ├── mogorhom-dark.png ├── mogorhom-light.png ├── package.json ├── preview.gif ├── src ├── components │ ├── bottomSheet │ │ ├── BottomSheet.tsx │ │ ├── BottomSheetBody.tsx │ │ ├── BottomSheetContent.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ ├── bottomSheetBackdrop │ │ ├── BottomSheetBackdrop.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ ├── bottomSheetBackground │ │ ├── BottomSheetBackground.tsx │ │ ├── BottomSheetBackgroundContainer.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ ├── bottomSheetDebugView │ │ ├── BottomSheetDebugView.tsx │ │ ├── ReText.tsx │ │ ├── ReText.webx.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ └── styles.web.ts │ ├── bottomSheetDraggableView │ │ ├── BottomSheetDraggableView.tsx │ │ ├── index.ts │ │ └── types.d.ts │ ├── bottomSheetFooter │ │ ├── BottomSheetFooter.tsx │ │ ├── BottomSheetFooterContainer.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ ├── bottomSheetGestureHandlersProvider │ │ ├── BottomSheetGestureHandlersProvider.tsx │ │ ├── index.ts │ │ └── types.d.ts │ ├── bottomSheetHandle │ │ ├── BottomSheetHandle.tsx │ │ ├── BottomSheetHandleContainer.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ ├── bottomSheetHostingContainer │ │ ├── BottomSheetHostingContainer.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ ├── styles.web.ts │ │ └── types.d.ts │ ├── bottomSheetModal │ │ ├── BottomSheetModal.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ └── types.d.ts │ ├── bottomSheetModalProvider │ │ ├── BottomSheetModalProvider.tsx │ │ ├── index.ts │ │ └── types.d.ts │ ├── bottomSheetRefreshControl │ │ ├── BottomSheetRefreshControl.android.tsx │ │ ├── BottomSheetRefreshControl.tsx │ │ └── index.ts │ ├── bottomSheetScrollable │ │ ├── BottomSheetDraggableScrollable.tsx │ │ ├── BottomSheetFlashList.tsx │ │ ├── BottomSheetFlashList.web.tsx │ │ ├── BottomSheetFlatList.tsx │ │ ├── BottomSheetScrollView.tsx │ │ ├── BottomSheetSectionList.tsx │ │ ├── BottomSheetVirtualizedList.tsx │ │ ├── ScrollableContainer.android.tsx │ │ ├── ScrollableContainer.tsx │ │ ├── ScrollableContainer.web.tsx │ │ ├── createBottomSheetScrollableComponent.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ ├── types.d.ts │ │ └── useBottomSheetContentSizeSetter.ts │ ├── bottomSheetTextInput │ │ ├── BottomSheetTextInput.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── bottomSheetView │ │ ├── BottomSheetView.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ └── types.d.ts │ └── touchables │ │ ├── Touchables.ios.tsx │ │ ├── Touchables.tsx │ │ └── index.ts ├── constants.ts ├── contexts │ ├── external.ts │ ├── gesture.ts │ ├── index.ts │ ├── internal.ts │ └── modal │ │ ├── external.ts │ │ └── internal.ts ├── hooks │ ├── index.ts │ ├── useAnimatedDetents.ts │ ├── useAnimatedKeyboard.ts │ ├── useAnimatedLayout.ts │ ├── useBottomSheet.ts │ ├── useBottomSheetContentContainerStyle.ts │ ├── useBottomSheetGestureHandlers.ts │ ├── useBottomSheetInternal.ts │ ├── useBottomSheetModal.ts │ ├── useBottomSheetModalInternal.ts │ ├── useBottomSheetScrollableCreator.tsx │ ├── useBottomSheetSpringConfigs.ts │ ├── useBottomSheetTimingConfigs.ts │ ├── useBoundingClientRect.ts │ ├── useGestureEventsHandlersDefault.tsx │ ├── useGestureEventsHandlersDefault.web.tsx │ ├── useGestureHandler.ts │ ├── usePropsValidator.ts │ ├── useReactiveSharedValue.ts │ ├── useScrollEventsHandlersDefault.ts │ ├── useScrollHandler.ts │ ├── useScrollHandler.web.ts │ ├── useScrollable.ts │ ├── useScrollableSetter.ts │ └── useStableCallback.ts ├── index.ts ├── types.d.ts └── utilities │ ├── animate.ts │ ├── clamp.ts │ ├── easingExp.ts │ ├── findNodeHandle.ts │ ├── findNodeHandle.web.ts │ ├── getKeyboardAnimationConfigs.ts │ ├── getRefNativeTag.web.ts │ ├── id.ts │ ├── index.ts │ ├── isFabricInstalled.ts │ ├── logger.ts │ ├── noop.ts │ ├── normalizeSnapPoint.ts │ ├── snapPoint.ts │ └── validateSnapPoint.ts ├── tsconfig.json ├── website ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2021-08-30-bottom-sheet-v4.mdx │ ├── 2024-10-05-bottom-sheet-v5.mdx │ ├── authors.yml │ └── tags.yml ├── docs │ ├── components │ │ ├── bottomsheetbackdrop.md │ │ ├── bottomsheetflashlist.md │ │ ├── bottomsheetflatlist.md │ │ ├── bottomsheetfooter.md │ │ ├── bottomsheetscrollview.md │ │ ├── bottomsheetsectionlist.md │ │ ├── bottomsheettextinput.md │ │ ├── bottomsheetview.md │ │ └── bottomsheetvirtualizedlist.md │ ├── faq.md │ ├── guides │ │ ├── adding-shadow.mdx │ │ ├── custom-backdrop.mdx │ │ ├── custom-background.mdx │ │ ├── custom-footer.mdx │ │ ├── custom-handle.mdx │ │ ├── detach-modal.mdx │ │ ├── dynamic-sizing.mdx │ │ ├── keyboard-handling.mdx │ │ ├── pull-to-refresh.mdx │ │ ├── react-navigation.md │ │ └── web-support.mdx │ ├── hooks.md │ ├── index.md │ ├── methods.md │ ├── modal │ │ ├── hooks.md │ │ ├── index.mdx │ │ ├── methods.md │ │ ├── props.md │ │ └── usage.md │ ├── props.md │ ├── scrollables.md │ ├── troubleshooting.md │ └── usage.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── css │ │ └── custom.css │ └── pages │ │ └── sponsors.mdx ├── static │ ├── .nojekyll │ ├── CNAME │ ├── googled4a9e66f4b4d23d7.html │ ├── img │ │ ├── Icon.png │ │ ├── bottom-sheet-shadow.jpg │ │ ├── favicon.ico │ │ ├── logo.svg │ │ └── preview.gif │ └── video │ │ ├── bottom-sheet-custom-backdrop-preview.mp4 │ │ ├── bottom-sheet-custom-background-preview.mp4 │ │ ├── bottom-sheet-custom-handle-preview.mp4 │ │ ├── bottom-sheet-detach-preview.mp4 │ │ ├── bottom-sheet-dynamic-sizing-preview.mp4 │ │ ├── bottom-sheet-flashlist-preview.mp4 │ │ ├── bottom-sheet-footer-preview.mp4 │ │ ├── bottom-sheet-keyboard-handling-preview.mp4 │ │ ├── bottom-sheet-modal-preview.mp4 │ │ ├── bottom-sheet-preview.mp4 │ │ ├── bottom-sheet-pull-to-refresh-preview.mp4 │ │ └── bottom-sheet-web-support-preview.mp4 ├── tsconfig.json ├── versioned_docs │ ├── version-2 │ │ ├── faq.md │ │ ├── guides │ │ │ ├── adding-shadow.mdx │ │ │ ├── custom-backdrop.mdx │ │ │ ├── custom-background.mdx │ │ │ ├── custom-handle.mdx │ │ │ └── react-naigation.md │ │ ├── hooks.md │ │ ├── index.mdx │ │ ├── methods.md │ │ ├── modal │ │ │ ├── hooks.md │ │ │ ├── index.mdx │ │ │ ├── methods.md │ │ │ ├── props.md │ │ │ └── usage.md │ │ ├── props.md │ │ ├── scrollables.md │ │ ├── sidebars.ts │ │ ├── troubleshooting.md │ │ └── usage.md │ └── version-4 │ │ ├── components │ │ ├── bottomsheetbackdrop.md │ │ ├── bottomsheetflatlist.md │ │ ├── bottomsheetfooter.md │ │ ├── bottomsheetscrollview.md │ │ ├── bottomsheetsectionlist.md │ │ ├── bottomsheettextinput.md │ │ ├── bottomsheetview.md │ │ └── bottomsheetvirtualizedlist.md │ │ ├── faq.md │ │ ├── guides │ │ ├── adding-shadow.mdx │ │ ├── custom-backdrop.mdx │ │ ├── custom-background.mdx │ │ ├── custom-footer.mdx │ │ ├── custom-handle.mdx │ │ ├── detach-modal.mdx │ │ ├── keyboard-handling.mdx │ │ ├── pull-to-refresh.mdx │ │ └── react-navigation.md │ │ ├── hooks.md │ │ ├── index.md │ │ ├── methods.md │ │ ├── modal │ │ ├── hooks.md │ │ ├── index.mdx │ │ ├── methods.md │ │ ├── props.md │ │ └── usage.md │ │ ├── props.md │ │ ├── scrollables.md │ │ ├── sidebars.ts │ │ ├── troubleshooting.md │ │ └── usage.md ├── versioned_sidebars │ ├── version-2-sidebars.json │ └── version-4-sidebars.json └── versions.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/ISSUE_TEMPLATE/bug_template.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/workflows/auto-close.yml -------------------------------------------------------------------------------- /.github/workflows/label-sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/workflows/label-sponsors.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/babel.config.js -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/biome.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/comment.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/like.png -------------------------------------------------------------------------------- /example/assets/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/retweet.png -------------------------------------------------------------------------------- /example/assets/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/share.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/Dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/Dev.tsx -------------------------------------------------------------------------------- /example/src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/Main.tsx -------------------------------------------------------------------------------- /example/src/components/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/button/Button.tsx -------------------------------------------------------------------------------- /example/src/components/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/button/index.ts -------------------------------------------------------------------------------- /example/src/components/contactItem/ContactItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactItem/ContactItem.tsx -------------------------------------------------------------------------------- /example/src/components/contactItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactItem/index.ts -------------------------------------------------------------------------------- /example/src/components/contactList/ContactList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactList/ContactList.tsx -------------------------------------------------------------------------------- /example/src/components/contactList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactList/index.ts -------------------------------------------------------------------------------- /example/src/components/contactList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactList/styles.ts -------------------------------------------------------------------------------- /example/src/components/contactList/styles.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/contactList/styles.web.ts -------------------------------------------------------------------------------- /example/src/components/customBackground/CustomBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customBackground/CustomBackground.tsx -------------------------------------------------------------------------------- /example/src/components/customBackground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customBackground/index.ts -------------------------------------------------------------------------------- /example/src/components/customFooter/CustomFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customFooter/CustomFooter.tsx -------------------------------------------------------------------------------- /example/src/components/customFooter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customFooter/index.ts -------------------------------------------------------------------------------- /example/src/components/customHandle/CustomHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customHandle/CustomHandle.tsx -------------------------------------------------------------------------------- /example/src/components/customHandle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/customHandle/index.ts -------------------------------------------------------------------------------- /example/src/components/headerHandle/HeaderHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/headerHandle/HeaderHandle.tsx -------------------------------------------------------------------------------- /example/src/components/headerHandle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/headerHandle/index.ts -------------------------------------------------------------------------------- /example/src/components/searchHandle/SearchHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/searchHandle/SearchHandle.tsx -------------------------------------------------------------------------------- /example/src/components/searchHandle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/components/searchHandle/index.ts -------------------------------------------------------------------------------- /example/src/screens/advanced/BackdropExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/BackdropExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/CustomBackgroundExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/CustomBackgroundExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/CustomHandleExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/CustomHandleExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/CustomThemeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/CustomThemeExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/DynamicSizingExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/DynamicSizingExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/FooterExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/FooterExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/KeyboardHandlingExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/KeyboardHandlingExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/PullToRefreshExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/PullToRefreshExample.tsx -------------------------------------------------------------------------------- /example/src/screens/advanced/ShadowExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/advanced/ShadowExample.tsx -------------------------------------------------------------------------------- /example/src/screens/basic/BasicExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/basic/BasicExamples.tsx -------------------------------------------------------------------------------- /example/src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/index.ts -------------------------------------------------------------------------------- /example/src/screens/integrations/NativeScreensExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/NativeScreensExample.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/ViewPagerExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/ViewPagerExample.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/FlashListExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/flashlist/FlashListExample.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/TweetContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/flashlist/TweetContent.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/data/tweets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/flashlist/data/tweets.ts -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FlashListExample'; 2 | -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/models/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/flashlist/models/Author.ts -------------------------------------------------------------------------------- /example/src/screens/integrations/flashlist/models/Tweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/flashlist/models/Tweet.ts -------------------------------------------------------------------------------- /example/src/screens/integrations/legendlist/LegendListExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/legendlist/LegendListExample.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/legendlist/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LegendListExample'; 2 | -------------------------------------------------------------------------------- /example/src/screens/integrations/legendlist/renderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/legendlist/renderItem.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/BlurredBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/BlurredBackground.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/BlurredHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/BlurredHandle.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/LocationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/LocationDetails.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/LocationDetailsBottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/LocationDetailsBottomSheet.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/LocationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/LocationItem.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/LocationListBottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/LocationListBottomSheet.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/MapExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/MapExample.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/map/Weather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/map/Weather.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/navigation/DummyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/navigation/DummyScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/integrations/navigation/NavigatorExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/integrations/navigation/NavigatorExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/BackdropExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/BackdropExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/DetachedExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/DetachedExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/DynamicSizingExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/DynamicSizingExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/SimpleExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/SimpleExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/StackExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/StackExample.tsx -------------------------------------------------------------------------------- /example/src/screens/modal/withModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/modal/withModalProvider.tsx -------------------------------------------------------------------------------- /example/src/screens/withGestureHandlerRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/screens/withGestureHandlerRoot.tsx -------------------------------------------------------------------------------- /example/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/types.d.ts -------------------------------------------------------------------------------- /example/src/utilities/createMockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/utilities/createMockData.ts -------------------------------------------------------------------------------- /example/src/utilities/transformOrigin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/src/utilities/transformOrigin.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/mock.js -------------------------------------------------------------------------------- /mogorhom-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/mogorhom-dark.png -------------------------------------------------------------------------------- /mogorhom-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/mogorhom-light.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/preview.gif -------------------------------------------------------------------------------- /src/components/bottomSheet/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/BottomSheet.tsx -------------------------------------------------------------------------------- /src/components/bottomSheet/BottomSheetBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/BottomSheetBody.tsx -------------------------------------------------------------------------------- /src/components/bottomSheet/BottomSheetContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/BottomSheetContent.tsx -------------------------------------------------------------------------------- /src/components/bottomSheet/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/constants.ts -------------------------------------------------------------------------------- /src/components/bottomSheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheet/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheet/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheet/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackdrop/BottomSheetBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackdrop/BottomSheetBackdrop.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetBackdrop/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackdrop/constants.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackdrop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackdrop/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackdrop/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackdrop/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackdrop/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackdrop/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackground/BottomSheetBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackground/BottomSheetBackground.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackground/BottomSheetBackgroundContainer.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetBackground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackground/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackground/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackground/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetBackground/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetBackground/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/BottomSheetDebugView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDebugView/BottomSheetDebugView.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/ReText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDebugView/ReText.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/ReText.webx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDebugView/ReText.webx.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BottomSheetDebugView'; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDebugView/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetDebugView/styles.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDebugView/styles.web.ts -------------------------------------------------------------------------------- /src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDraggableView/BottomSheetDraggableView.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetDraggableView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BottomSheetDraggableView'; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetDraggableView/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetDraggableView/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetFooter/BottomSheetFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetFooter/BottomSheetFooter.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetFooter/BottomSheetFooterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetFooter/BottomSheetFooterContainer.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetFooter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetFooter/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetFooter/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetFooter/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetFooter/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetFooter/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetGestureHandlersProvider/BottomSheetGestureHandlersProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetGestureHandlersProvider/BottomSheetGestureHandlersProvider.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetGestureHandlersProvider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BottomSheetGestureHandlersProvider'; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetGestureHandlersProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetGestureHandlersProvider/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/BottomSheetHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/BottomSheetHandle.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/BottomSheetHandleContainer.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/constants.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHandle/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHandle/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHostingContainer/BottomSheetHostingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHostingContainer/BottomSheetHostingContainer.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetHostingContainer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHostingContainer/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHostingContainer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHostingContainer/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHostingContainer/styles.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHostingContainer/styles.web.ts -------------------------------------------------------------------------------- /src/components/bottomSheetHostingContainer/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetHostingContainer/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetModal/BottomSheetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModal/BottomSheetModal.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetModal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModal/constants.ts -------------------------------------------------------------------------------- /src/components/bottomSheetModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModal/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetModal/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModal/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetModalProvider/BottomSheetModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModalProvider/BottomSheetModalProvider.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetModalProvider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BottomSheetModalProvider'; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetModalProvider/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetModalProvider/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetRefreshControl/BottomSheetRefreshControl.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetRefreshControl/BottomSheetRefreshControl.android.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetRefreshControl/BottomSheetRefreshControl.tsx: -------------------------------------------------------------------------------- 1 | export default () => null; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetRefreshControl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetRefreshControl/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetDraggableScrollable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetDraggableScrollable.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetFlashList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetFlashList.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetFlashList.web.tsx: -------------------------------------------------------------------------------- 1 | export default () => null; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetFlatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetFlatList.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetScrollView.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetSectionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetSectionList.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/BottomSheetVirtualizedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/BottomSheetVirtualizedList.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/ScrollableContainer.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/ScrollableContainer.android.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/ScrollableContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/ScrollableContainer.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/ScrollableContainer.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/ScrollableContainer.web.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/createBottomSheetScrollableComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/createBottomSheetScrollableComponent.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/types.d.ts -------------------------------------------------------------------------------- /src/components/bottomSheetScrollable/useBottomSheetContentSizeSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetScrollable/useBottomSheetContentSizeSetter.ts -------------------------------------------------------------------------------- /src/components/bottomSheetTextInput/BottomSheetTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetTextInput/BottomSheetTextInput.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetTextInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetTextInput/index.ts -------------------------------------------------------------------------------- /src/components/bottomSheetTextInput/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetTextInput/types.ts -------------------------------------------------------------------------------- /src/components/bottomSheetView/BottomSheetView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetView/BottomSheetView.tsx -------------------------------------------------------------------------------- /src/components/bottomSheetView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BottomSheetView'; 2 | -------------------------------------------------------------------------------- /src/components/bottomSheetView/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetView/styles.ts -------------------------------------------------------------------------------- /src/components/bottomSheetView/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/bottomSheetView/types.d.ts -------------------------------------------------------------------------------- /src/components/touchables/Touchables.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/touchables/Touchables.ios.tsx -------------------------------------------------------------------------------- /src/components/touchables/Touchables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/touchables/Touchables.tsx -------------------------------------------------------------------------------- /src/components/touchables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/components/touchables/index.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/contexts/external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/external.ts -------------------------------------------------------------------------------- /src/contexts/gesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/gesture.ts -------------------------------------------------------------------------------- /src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/index.ts -------------------------------------------------------------------------------- /src/contexts/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/internal.ts -------------------------------------------------------------------------------- /src/contexts/modal/external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/modal/external.ts -------------------------------------------------------------------------------- /src/contexts/modal/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/contexts/modal/internal.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useAnimatedDetents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useAnimatedDetents.ts -------------------------------------------------------------------------------- /src/hooks/useAnimatedKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useAnimatedKeyboard.ts -------------------------------------------------------------------------------- /src/hooks/useAnimatedLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useAnimatedLayout.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheet.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetContentContainerStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetContentContainerStyle.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetGestureHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetGestureHandlers.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetInternal.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetModal.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetModalInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetModalInternal.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetScrollableCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetScrollableCreator.tsx -------------------------------------------------------------------------------- /src/hooks/useBottomSheetSpringConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetSpringConfigs.ts -------------------------------------------------------------------------------- /src/hooks/useBottomSheetTimingConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBottomSheetTimingConfigs.ts -------------------------------------------------------------------------------- /src/hooks/useBoundingClientRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useBoundingClientRect.ts -------------------------------------------------------------------------------- /src/hooks/useGestureEventsHandlersDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useGestureEventsHandlersDefault.tsx -------------------------------------------------------------------------------- /src/hooks/useGestureEventsHandlersDefault.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useGestureEventsHandlersDefault.web.tsx -------------------------------------------------------------------------------- /src/hooks/useGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useGestureHandler.ts -------------------------------------------------------------------------------- /src/hooks/usePropsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/usePropsValidator.ts -------------------------------------------------------------------------------- /src/hooks/useReactiveSharedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useReactiveSharedValue.ts -------------------------------------------------------------------------------- /src/hooks/useScrollEventsHandlersDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useScrollEventsHandlersDefault.ts -------------------------------------------------------------------------------- /src/hooks/useScrollHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useScrollHandler.ts -------------------------------------------------------------------------------- /src/hooks/useScrollHandler.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useScrollHandler.web.ts -------------------------------------------------------------------------------- /src/hooks/useScrollable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useScrollable.ts -------------------------------------------------------------------------------- /src/hooks/useScrollableSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useScrollableSetter.ts -------------------------------------------------------------------------------- /src/hooks/useStableCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/hooks/useStableCallback.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utilities/animate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/animate.ts -------------------------------------------------------------------------------- /src/utilities/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/clamp.ts -------------------------------------------------------------------------------- /src/utilities/easingExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/easingExp.ts -------------------------------------------------------------------------------- /src/utilities/findNodeHandle.ts: -------------------------------------------------------------------------------- 1 | export { findNodeHandle } from 'react-native'; 2 | -------------------------------------------------------------------------------- /src/utilities/findNodeHandle.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/findNodeHandle.web.ts -------------------------------------------------------------------------------- /src/utilities/getKeyboardAnimationConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/getKeyboardAnimationConfigs.ts -------------------------------------------------------------------------------- /src/utilities/getRefNativeTag.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/getRefNativeTag.web.ts -------------------------------------------------------------------------------- /src/utilities/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/id.ts -------------------------------------------------------------------------------- /src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/index.ts -------------------------------------------------------------------------------- /src/utilities/isFabricInstalled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/isFabricInstalled.ts -------------------------------------------------------------------------------- /src/utilities/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/logger.ts -------------------------------------------------------------------------------- /src/utilities/noop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/noop.ts -------------------------------------------------------------------------------- /src/utilities/normalizeSnapPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/normalizeSnapPoint.ts -------------------------------------------------------------------------------- /src/utilities/snapPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/snapPoint.ts -------------------------------------------------------------------------------- /src/utilities/validateSnapPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/src/utilities/validateSnapPoint.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/blog/2021-08-30-bottom-sheet-v4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/blog/2021-08-30-bottom-sheet-v4.mdx -------------------------------------------------------------------------------- /website/blog/2024-10-05-bottom-sheet-v5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/blog/2024-10-05-bottom-sheet-v5.mdx -------------------------------------------------------------------------------- /website/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/blog/authors.yml -------------------------------------------------------------------------------- /website/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/blog/tags.yml -------------------------------------------------------------------------------- /website/docs/components/bottomsheetbackdrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetbackdrop.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetflashlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetflashlist.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetflatlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetflatlist.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetfooter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetfooter.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetscrollview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetscrollview.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetsectionlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetsectionlist.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheettextinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheettextinput.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetview.md -------------------------------------------------------------------------------- /website/docs/components/bottomsheetvirtualizedlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/components/bottomsheetvirtualizedlist.md -------------------------------------------------------------------------------- /website/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/faq.md -------------------------------------------------------------------------------- /website/docs/guides/adding-shadow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/adding-shadow.mdx -------------------------------------------------------------------------------- /website/docs/guides/custom-backdrop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/custom-backdrop.mdx -------------------------------------------------------------------------------- /website/docs/guides/custom-background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/custom-background.mdx -------------------------------------------------------------------------------- /website/docs/guides/custom-footer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/custom-footer.mdx -------------------------------------------------------------------------------- /website/docs/guides/custom-handle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/custom-handle.mdx -------------------------------------------------------------------------------- /website/docs/guides/detach-modal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/detach-modal.mdx -------------------------------------------------------------------------------- /website/docs/guides/dynamic-sizing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/dynamic-sizing.mdx -------------------------------------------------------------------------------- /website/docs/guides/keyboard-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/keyboard-handling.mdx -------------------------------------------------------------------------------- /website/docs/guides/pull-to-refresh.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/pull-to-refresh.mdx -------------------------------------------------------------------------------- /website/docs/guides/react-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/react-navigation.md -------------------------------------------------------------------------------- /website/docs/guides/web-support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/guides/web-support.mdx -------------------------------------------------------------------------------- /website/docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/hooks.md -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/docs/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/methods.md -------------------------------------------------------------------------------- /website/docs/modal/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/modal/hooks.md -------------------------------------------------------------------------------- /website/docs/modal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/modal/index.mdx -------------------------------------------------------------------------------- /website/docs/modal/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/modal/methods.md -------------------------------------------------------------------------------- /website/docs/modal/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/modal/props.md -------------------------------------------------------------------------------- /website/docs/modal/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/modal/usage.md -------------------------------------------------------------------------------- /website/docs/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/props.md -------------------------------------------------------------------------------- /website/docs/scrollables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/scrollables.md -------------------------------------------------------------------------------- /website/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/troubleshooting.md -------------------------------------------------------------------------------- /website/docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docs/usage.md -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/src/pages/sponsors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/src/pages/sponsors.mdx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | gorhom.dev -------------------------------------------------------------------------------- /website/static/googled4a9e66f4b4d23d7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/googled4a9e66f4b4d23d7.html -------------------------------------------------------------------------------- /website/static/img/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/img/Icon.png -------------------------------------------------------------------------------- /website/static/img/bottom-sheet-shadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/img/bottom-sheet-shadow.jpg -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/img/preview.gif -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-custom-backdrop-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-custom-backdrop-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-custom-background-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-custom-background-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-custom-handle-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-custom-handle-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-detach-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-detach-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-dynamic-sizing-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-dynamic-sizing-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-flashlist-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-flashlist-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-footer-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-footer-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-keyboard-handling-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-keyboard-handling-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-modal-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-modal-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-pull-to-refresh-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-pull-to-refresh-preview.mp4 -------------------------------------------------------------------------------- /website/static/video/bottom-sheet-web-support-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/static/video/bottom-sheet-web-support-preview.mp4 -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/versioned_docs/version-2/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/faq.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/guides/adding-shadow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/guides/adding-shadow.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/guides/custom-backdrop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/guides/custom-backdrop.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/guides/custom-background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/guides/custom-background.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/guides/custom-handle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/guides/custom-handle.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/guides/react-naigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/guides/react-naigation.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/hooks.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/methods.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/modal/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/modal/hooks.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/modal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/modal/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-2/modal/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/modal/methods.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/modal/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/modal/props.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/modal/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/modal/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/props.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/scrollables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/scrollables.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/sidebars.ts -------------------------------------------------------------------------------- /website/versioned_docs/version-2/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-2/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetbackdrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetbackdrop.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetflatlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetflatlist.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetfooter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetfooter.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetscrollview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetscrollview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetsectionlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetsectionlist.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheettextinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheettextinput.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/components/bottomsheetvirtualizedlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/components/bottomsheetvirtualizedlist.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/faq.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/adding-shadow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/adding-shadow.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/custom-backdrop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/custom-backdrop.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/custom-background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/custom-background.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/custom-footer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/custom-footer.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/custom-handle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/custom-handle.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/detach-modal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/detach-modal.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/keyboard-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/keyboard-handling.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/pull-to-refresh.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/pull-to-refresh.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/guides/react-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/guides/react-navigation.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/hooks.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/index.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/methods.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/modal/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/modal/hooks.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/modal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/modal/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4/modal/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/modal/methods.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/modal/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/modal/props.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/modal/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/modal/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/props.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/scrollables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/scrollables.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/sidebars.ts -------------------------------------------------------------------------------- /website/versioned_docs/version-4/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_docs/version-4/usage.md -------------------------------------------------------------------------------- /website/versioned_sidebars/version-2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_sidebars/version-2-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-4-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/website/versioned_sidebars/version-4-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- 1 | ["4", "2"] 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorhom/react-native-bottom-sheet/HEAD/yarn.lock --------------------------------------------------------------------------------