├── .clang-format ├── .eslintrc.json ├── .git-blame-ignore-revs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── publish-npm-package │ │ └── action.yml └── workflows │ ├── android-build-paper.yml │ ├── android-build.yml │ ├── check-archs-consistency.yml │ ├── close-when-stale.yml │ ├── docs-check.yml │ ├── ios-build-paper.yml │ ├── ios-build.yml │ ├── kotlin-lint.yml │ ├── macos-build.yml │ ├── main.yml │ ├── needs-more-info.yml │ ├── needs-repro.yml │ ├── platforms.yml │ ├── publish-release.yml │ ├── static-example-apps-checks.yml │ ├── static-root-checks.yml │ └── yarn-validation.yml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .lintstagedrc.json ├── .prettierrc.json ├── .yarn ├── patches │ └── @react-native-community-slider-npm-4.5.7-658e0e58c9.patch └── releases │ └── yarn-4.7.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── apps ├── basic-example │ ├── .bundle │ │ └── config │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── basicexample │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── BasicExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BasicExample.xcscheme │ │ ├── BasicExample.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── BasicExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── ComponentsScreen.tsx │ │ ├── FinalScreen.tsx │ │ ├── GestureCompositionScreen.tsx │ │ ├── HomeScreen.tsx │ │ ├── Navigator.tsx │ │ ├── ViewFlatteningScreen.tsx │ │ ├── colors.ts │ │ └── utils.ts │ └── tsconfig.json ├── common-app │ ├── .gitignore │ ├── App.tsx │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── ListWithHeader │ │ │ ├── Header.tsx │ │ │ ├── ListWithHeader.tsx │ │ │ ├── index.ts │ │ │ ├── signet.png │ │ │ └── text.png │ │ ├── basic │ │ │ ├── bouncing │ │ │ │ └── index.tsx │ │ │ ├── draggable │ │ │ │ └── index.tsx │ │ │ ├── fling │ │ │ │ └── index.tsx │ │ │ ├── forcetouch │ │ │ │ └── index.tsx │ │ │ ├── horizontalDrawer │ │ │ │ └── index.tsx │ │ │ ├── multitap │ │ │ │ └── index.tsx │ │ │ ├── pagerAndDrawer │ │ │ │ ├── index.android.tsx │ │ │ │ └── index.tsx │ │ │ └── panResponder │ │ │ │ └── index.tsx │ │ ├── common.tsx │ │ ├── config.tsx │ │ ├── empty │ │ │ └── EmptyExample.tsx │ │ ├── new_api │ │ │ ├── betterHorizontalDrawer │ │ │ │ ├── BetterHorizonatalDrawer.tsx │ │ │ │ └── index.tsx │ │ │ ├── bottom_sheet │ │ │ │ └── index.tsx │ │ │ ├── calculator │ │ │ │ └── index.tsx │ │ │ ├── camera │ │ │ │ ├── AnimatedCameraView.macos.tsx │ │ │ │ ├── AnimatedCameraView.tsx │ │ │ │ └── index.tsx │ │ │ ├── chat_heads │ │ │ │ └── index.tsx │ │ │ ├── drag_n_drop │ │ │ │ ├── DragAndDrop.tsx │ │ │ │ ├── Draggable.tsx │ │ │ │ ├── Tile.tsx │ │ │ │ ├── constants.tsx │ │ │ │ └── index.tsx │ │ │ ├── hover │ │ │ │ └── index.tsx │ │ │ ├── hoverable_icons │ │ │ │ ├── freeze.png │ │ │ │ ├── gh.png │ │ │ │ ├── index.tsx │ │ │ │ ├── rea.png │ │ │ │ ├── screens.png │ │ │ │ └── svg.png │ │ │ ├── manualGestures │ │ │ │ └── index.tsx │ │ │ ├── overlap │ │ │ │ └── index.tsx │ │ │ ├── pressable │ │ │ │ └── index.tsx │ │ │ ├── swipeable │ │ │ │ ├── AppleStyleSwipeableRow.tsx │ │ │ │ ├── GmailStyleSwipeableRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── transformations │ │ │ │ └── index.tsx │ │ │ └── velocityTest │ │ │ │ └── index.tsx │ │ ├── recipes │ │ │ ├── panAndScroll │ │ │ │ └── index.tsx │ │ │ └── scaleAndRotate │ │ │ │ ├── index.tsx │ │ │ │ ├── swm.svg │ │ │ │ └── swmansion.png │ │ ├── release_tests │ │ │ ├── StylusData │ │ │ │ └── index.tsx │ │ │ ├── combo │ │ │ │ └── index.tsx │ │ │ ├── contextMenu │ │ │ │ └── index.tsx │ │ │ ├── doubleDraggable │ │ │ │ └── index.tsx │ │ │ ├── doubleScalePinchAndRotate │ │ │ │ └── index.tsx │ │ │ ├── gesturizedPressable │ │ │ │ ├── androidRippleExample.tsx │ │ │ │ ├── delayedPressExample.tsx │ │ │ │ ├── functionalStylesExample.tsx │ │ │ │ ├── hitSlopExample.tsx │ │ │ │ ├── hoverDelayExample.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── testingBase.tsx │ │ │ ├── mouseButtons │ │ │ │ └── index.tsx │ │ │ ├── nestedButtons │ │ │ │ └── index.tsx │ │ │ ├── nestedFling │ │ │ │ └── index.tsx │ │ │ ├── nestedGHRootViewWithModal │ │ │ │ └── index.tsx │ │ │ ├── nestedPressables │ │ │ │ └── index.tsx │ │ │ ├── nestedText │ │ │ │ └── index.tsx │ │ │ ├── nestedTouchables │ │ │ │ └── index.tsx │ │ │ ├── overflowParent │ │ │ │ └── index.tsx │ │ │ ├── pointerType │ │ │ │ └── index.tsx │ │ │ ├── reanimatedDrawerLayout │ │ │ │ └── index.tsx │ │ │ ├── rectButton │ │ │ │ └── index.tsx │ │ │ ├── rows │ │ │ │ └── index.tsx │ │ │ ├── svg │ │ │ │ └── index.tsx │ │ │ ├── swipeableReanimation │ │ │ │ └── index.tsx │ │ │ ├── touchables │ │ │ │ └── index.tsx │ │ │ ├── twoFingerPan │ │ │ │ └── index.tsx │ │ │ └── webStylesReset │ │ │ │ └── index.tsx │ │ ├── showcase │ │ │ ├── bottomSheet │ │ │ │ └── index.tsx │ │ │ ├── chatHeads │ │ │ │ └── index.tsx │ │ │ └── swipeable │ │ │ │ ├── AppleStyleSwipeableRow.tsx │ │ │ │ ├── GmailStyleSwipeableRow.tsx │ │ │ │ └── index.tsx │ │ └── simple │ │ │ ├── draggable │ │ │ └── index.tsx │ │ │ ├── fling │ │ │ └── index.tsx │ │ │ ├── longPress │ │ │ └── index.tsx │ │ │ ├── manual │ │ │ └── index.tsx │ │ │ └── tap │ │ │ └── index.tsx │ └── tsconfig.json ├── expo-example │ ├── .gitignore │ ├── App.tsx │ ├── README.md │ ├── app.config.js │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── splash-icon.png │ │ └── splash.png │ ├── index.ts │ ├── metro.config.js │ ├── package.json │ └── tsconfig.json └── macos-example │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── app.json │ ├── babel.config.js │ ├── index.ts │ ├── jest.config.js │ ├── macos │ ├── .gitignore │ ├── .xcode.env │ ├── MacOSExample-macOS │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── MacOSExample.entitlements │ │ └── main.m │ ├── MacOSExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MacOSExample-macOS.xcscheme │ ├── MacOSExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Podfile.lock │ └── PrivacyInfo.xcprivacy │ ├── metro.config.js │ ├── package.json │ └── tsconfig.json ├── package.json ├── packages ├── docs-gesture-handler │ ├── .gitignore │ ├── .yarn │ │ └── releases │ │ │ └── yarn-1.22.22.cjs │ ├── .yarnrc │ ├── README.md │ ├── babel.config.js │ ├── components │ │ └── GifGallery.js │ ├── docs │ │ ├── components │ │ │ ├── _category_.json │ │ │ ├── buttons.mdx │ │ │ ├── drawer-layout.mdx │ │ │ ├── pressable.mdx │ │ │ ├── reanimated-drawer-layout.mdx │ │ │ ├── reanimated_swipeable.md │ │ │ ├── swipeable.md │ │ │ └── touchables.md │ │ ├── fundamentals │ │ │ ├── _category_.json │ │ │ ├── gesture-composition.md │ │ │ ├── installation.md │ │ │ ├── introduction.md │ │ │ └── states-events.mdx │ │ ├── gesture-handlers │ │ │ ├── _category_.json │ │ │ ├── about-handlers.md │ │ │ ├── common-gh.md │ │ │ ├── create-native-wrapper.md │ │ │ ├── fling-gh.md │ │ │ ├── force-gh.md │ │ │ ├── interactions.md │ │ │ ├── longpress-gh.md │ │ │ ├── nativeview-gh.md │ │ │ ├── pan-gh.md │ │ │ ├── pinch-gh.md │ │ │ ├── rotation-gh.md │ │ │ └── tap-gh.md │ │ ├── gestures │ │ │ ├── _category_.json │ │ │ ├── _shared │ │ │ │ ├── base-continuous-gesture-callbacks.md │ │ │ │ ├── base-continuous-gesture-config.md │ │ │ │ ├── base-gesture-callbacks.md │ │ │ │ ├── base-gesture-config.md │ │ │ │ ├── base-gesture-event-data.md │ │ │ │ └── gesture-detector-functional1.md │ │ │ ├── composed-gestures.md │ │ │ ├── fling-gesture.md │ │ │ ├── force-touch-gesture.md │ │ │ ├── gesture-detector.md │ │ │ ├── gesture.md │ │ │ ├── hover-gesture.md │ │ │ ├── long-press-gesture.md │ │ │ ├── manual-gesture.md │ │ │ ├── native-gesture.md │ │ │ ├── pan-gesture.md │ │ │ ├── pinch-gesture.md │ │ │ ├── rotation-gesture.md │ │ │ ├── state-manager.md │ │ │ ├── tap-gesture.md │ │ │ └── touch-events.md │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── manual-gestures │ │ │ │ ├── _steps │ │ │ │ │ ├── step1.md │ │ │ │ │ ├── step2.md │ │ │ │ │ ├── step3.md │ │ │ │ │ ├── step4.md │ │ │ │ │ ├── step5.md │ │ │ │ │ ├── step6.md │ │ │ │ │ └── step7.md │ │ │ │ └── index.md │ │ │ ├── migrating-off-rnghenabledroot.md │ │ │ ├── quickstart │ │ │ │ ├── _steps │ │ │ │ │ ├── step1.md │ │ │ │ │ ├── step2.md │ │ │ │ │ ├── step3.md │ │ │ │ │ ├── step4.md │ │ │ │ │ └── step5.md │ │ │ │ └── index.md │ │ │ ├── swipe-and-scroll.md │ │ │ ├── testing.md │ │ │ ├── troubleshooting.md │ │ │ └── upgrading-to-2.md │ │ └── under-the-hood │ │ │ ├── _category_.json │ │ │ ├── how-does-it-work.md │ │ │ └── state.md │ ├── docusaurus.config.js │ ├── package.json │ ├── scripts │ │ ├── build-og-images.jsx │ │ └── og-image-stream.jsx │ ├── sidebars.js │ ├── src │ │ ├── components │ │ │ ├── AlgoliaSearchBar │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── AnimableIcon │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── CollapseButton │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── CollapsibleCode │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── FooterBackground │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── GestureExamples │ │ │ │ ├── FlingExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── GestureExampleItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── LongPressExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── PanExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── PinchExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── RotationExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── TapExample │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── utils.tsx │ │ │ ├── GestureFeatures │ │ │ │ ├── GestureFeatureItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── GestureFeatureList │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Hero │ │ │ │ ├── LandingBackground │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Planets │ │ │ │ │ ├── PlanetsIcon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PlanetsIconDark │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Stars │ │ │ │ │ ├── StarsIcon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StarsIconDark │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── StartScreen │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ ├── HomepageButton │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── InteractiveExample │ │ │ │ ├── InteractiveExampleComponent │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── LandingExampleComponent │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Moon │ │ │ │ ├── MoonIcon │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── MoonIconDark │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ ├── Playground │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── RadonBanner │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── ReducedMotionWarning │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── SidebarLabel │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Sponsors │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Testimonials │ │ │ │ ├── TestimonialItem │ │ │ │ │ ├── QuoteIcon │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── TestimonialList │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ └── Wave │ │ │ │ ├── WaveIcon │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ │ ├── WaveIconBig │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ │ └── index.tsx │ │ ├── css │ │ │ ├── colors.css │ │ │ ├── index.css │ │ │ ├── overrides.css │ │ │ └── typography.css │ │ ├── examples │ │ │ └── GestureStateFlowExample │ │ │ │ ├── Arrow.tsx │ │ │ │ ├── ChartItem.tsx │ │ │ │ ├── ChartManager.ts │ │ │ │ ├── FlowChart.tsx │ │ │ │ └── index.tsx │ │ ├── hooks │ │ │ ├── usePageType.tsx │ │ │ └── useScreenSize.tsx │ │ ├── pages │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── theme │ │ │ ├── Admonition │ │ │ │ └── index.js │ │ │ ├── AnnouncementBar │ │ │ │ ├── CloseButton │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Content │ │ │ │ │ ├── ArrowButton │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.js │ │ │ │ └── styles.module.css │ │ │ ├── CodeBlock │ │ │ │ ├── highlighting-dark.js │ │ │ │ └── highlighting-light.js │ │ │ ├── DocCard │ │ │ │ └── index.js │ │ │ ├── DocItem │ │ │ │ ├── Metadata │ │ │ │ │ └── index.js │ │ │ │ └── TOC │ │ │ │ │ └── Mobile │ │ │ │ │ └── index.js │ │ │ ├── DocSidebar │ │ │ │ └── index.js │ │ │ ├── DocSidebarItem │ │ │ │ └── index.js │ │ │ ├── DocSidebarItems │ │ │ │ └── index.js │ │ │ ├── Footer │ │ │ │ └── index.js │ │ │ ├── MDXComponents.js │ │ │ ├── MDXComponents │ │ │ │ ├── Details.js │ │ │ │ ├── DetailsStyling.tsx │ │ │ │ └── styles.module.css │ │ │ ├── Navbar │ │ │ │ └── index.js │ │ │ ├── NotFound │ │ │ │ ├── index.js │ │ │ │ └── mapLegacyUrl.js │ │ │ ├── PaginatorNavLink │ │ │ │ └── index.js │ │ │ ├── Root.js │ │ │ ├── SearchPage │ │ │ │ └── index.js │ │ │ ├── Step │ │ │ │ ├── index.js │ │ │ │ └── styles.module.css │ │ │ ├── TOCCollapsible │ │ │ │ └── index.js │ │ │ ├── TOCItems │ │ │ │ ├── Tree.js │ │ │ │ └── index.js │ │ │ └── muiTheme.tsx │ │ └── utils │ │ │ ├── getGestureStyles.tsx │ │ │ └── style.module.css │ ├── static │ │ ├── .nojekyll │ │ ├── examples │ │ │ ├── FlingGestureBasic.js │ │ │ ├── FlingGestureBasicSrc.js │ │ │ ├── HoverGestureBasic.js │ │ │ ├── LongPressGestureBasic.js │ │ │ ├── PanGestureBasic.js │ │ │ ├── PanGestureBasicSrc.js │ │ │ ├── PinchGestureBasic.js │ │ │ ├── PinchGestureBasicSrc.js │ │ │ ├── RotationGestureBasic.js │ │ │ ├── RotationGestureBasicSrc.js │ │ │ └── TapGestureBasic.js │ │ ├── fonts │ │ │ ├── Aeonik-Air.woff │ │ │ ├── Aeonik-Air.woff2 │ │ │ ├── Aeonik-AirItalic.woff │ │ │ ├── Aeonik-AirItalic.woff2 │ │ │ ├── Aeonik-Black.woff │ │ │ ├── Aeonik-Black.woff2 │ │ │ ├── Aeonik-BlackItalic.woff │ │ │ ├── Aeonik-BlackItalic.woff2 │ │ │ ├── Aeonik-Bold.otf │ │ │ ├── Aeonik-Bold.woff │ │ │ ├── Aeonik-Bold.woff2 │ │ │ ├── Aeonik-BoldItalic.woff │ │ │ ├── Aeonik-BoldItalic.woff2 │ │ │ ├── Aeonik-Light.woff │ │ │ ├── Aeonik-Light.woff2 │ │ │ ├── Aeonik-LightItalic.woff │ │ │ ├── Aeonik-LightItalic.woff2 │ │ │ ├── Aeonik-Medium.otf │ │ │ ├── Aeonik-Medium.woff │ │ │ ├── Aeonik-Medium.woff2 │ │ │ ├── Aeonik-MediumItalic.woff │ │ │ ├── Aeonik-MediumItalic.woff2 │ │ │ ├── Aeonik-Regular.otf │ │ │ ├── Aeonik-Regular.woff │ │ │ ├── Aeonik-Regular.woff2 │ │ │ ├── Aeonik-RegularItalic.woff │ │ │ ├── Aeonik-RegularItalic.woff2 │ │ │ ├── Aeonik-Thin.woff │ │ │ ├── Aeonik-Thin.woff2 │ │ │ ├── Aeonik-ThinItalic.woff │ │ │ ├── Aeonik-ThinItalic.woff2 │ │ │ ├── DMMono-Regular.ttf │ │ │ ├── Lexend-Bold.ttf │ │ │ └── Lexend-SemiBold.ttf │ │ ├── gifs │ │ │ ├── androidbutton.gif │ │ │ ├── androidmail.gif │ │ │ ├── androidsettings.gif │ │ │ ├── drawer-back.gif │ │ │ ├── drawer-front.gif │ │ │ ├── drawer-parallax.gif │ │ │ ├── drawer-slide.gif │ │ │ ├── iosmail.gif │ │ │ ├── iossettings.gif │ │ │ ├── new-drawer-back.gif │ │ │ ├── new-drawer-front.gif │ │ │ ├── new-drawer-slide.gif │ │ │ ├── pressable.gif │ │ │ ├── sampleapp.gif │ │ │ ├── samplebutton.gif │ │ │ └── sampleswipeable.gif │ │ ├── img │ │ │ ├── Arrow-dark.svg │ │ │ ├── Arrow.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-left-dark.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-dark.svg │ │ │ ├── arrow-right-hero.svg │ │ │ ├── arrow-right.svg │ │ │ ├── brand-dark.svg │ │ │ ├── brand.svg │ │ │ ├── card-icon-dark.svg │ │ │ ├── card-icon.svg │ │ │ ├── copy-dark.svg │ │ │ ├── copy.svg │ │ │ ├── danger-dark.svg │ │ │ ├── danger.svg │ │ │ ├── expo-dark.svg │ │ │ ├── expo.svg │ │ │ ├── favicon.ico │ │ │ ├── github.svg │ │ │ ├── hand-one.svg │ │ │ ├── hand-two.svg │ │ │ ├── logo-hero.svg │ │ │ ├── og-image.png │ │ │ ├── pinch-reworked.svg │ │ │ ├── react-native-paradise.svg │ │ │ ├── reset-dark.svg │ │ │ ├── reset.svg │ │ │ ├── shopify-dark.svg │ │ │ ├── shopify.svg │ │ │ ├── state-of-react-native-logo.svg │ │ │ ├── swm-react-native-reanimated-illu-kon-06.svg │ │ │ ├── swm-react-native-reanimated-illu-top-05.svg │ │ │ ├── swmLogo.svg │ │ │ ├── title-dark.svg │ │ │ ├── title.svg │ │ │ └── two-arrows.svg │ │ ├── js │ │ │ └── snack-helpers.js │ │ └── video │ │ │ ├── fling.mp4 │ │ │ ├── hover.mp4 │ │ │ ├── longpress.mp4 │ │ │ ├── pan.mp4 │ │ │ ├── pinch.mp4 │ │ │ ├── rotation.mp4 │ │ │ └── tap.mp4 │ ├── tsconfig.json │ ├── unproccessed │ │ └── og-image.png │ ├── versioned_docs │ │ └── version-1.x │ │ │ ├── about-handlers.md │ │ │ ├── api │ │ │ ├── components │ │ │ │ ├── buttons.mdx │ │ │ │ ├── drawer-layout.mdx │ │ │ │ ├── swipeable.md │ │ │ │ └── touchables.md │ │ │ └── gesture-handlers │ │ │ │ ├── common-gh.md │ │ │ │ ├── create-native-wrapper.md │ │ │ │ ├── fling-gh.md │ │ │ │ ├── force-gh.md │ │ │ │ ├── longpress-gh.md │ │ │ │ ├── nativeview-gh.md │ │ │ │ ├── pan-gh.md │ │ │ │ ├── pinch-gh.md │ │ │ │ ├── rotation-gh.md │ │ │ │ └── tap-gh.md │ │ │ ├── contributing.md │ │ │ ├── credits.md │ │ │ ├── example.md │ │ │ ├── getting-started.md │ │ │ ├── interactions.md │ │ │ ├── resources.md │ │ │ ├── state.md │ │ │ └── troubleshooting.md │ ├── versioned_sidebars │ │ └── version-1.x-sidebars.json │ ├── versions.json │ └── yarn.lock └── react-native-gesture-handler │ ├── .gitignore │ ├── DrawerLayout │ └── package.json │ ├── LICENSE │ ├── RNGestureHandler.podspec │ ├── ReanimatedDrawerLayout │ └── package.json │ ├── ReanimatedSwipeable │ └── package.json │ ├── Swipeable │ └── package.json │ ├── android │ ├── build.gradle │ ├── fabric │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── swmansion │ │ │ └── gesturehandler │ │ │ ├── RNGestureHandlerComponentsRegistry.java │ │ │ └── ReactContextExtensions.kt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── noreanimated │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── swmansion │ │ │ ├── common │ │ │ └── GestureHandlerStateManager.kt │ │ │ └── gesturehandler │ │ │ └── ReanimatedEventDispatcher.kt │ ├── nosvg │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── swmansion │ │ │ └── gesturehandler │ │ │ └── RNSVGHitTester.kt │ ├── paper │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ ├── facebook │ │ │ └── react │ │ │ │ └── viewmanagers │ │ │ │ ├── RNGestureHandlerButtonManagerDelegate.java │ │ │ │ ├── RNGestureHandlerButtonManagerInterface.java │ │ │ │ ├── RNGestureHandlerRootViewManagerDelegate.java │ │ │ │ └── RNGestureHandlerRootViewManagerInterface.java │ │ │ └── swmansion │ │ │ └── gesturehandler │ │ │ ├── NativeRNGestureHandlerModuleSpec.java │ │ │ └── ReactContextExtensions.kt │ ├── reanimated │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── swmansion │ │ │ └── gesturehandler │ │ │ └── ReanimatedEventDispatcher.kt │ ├── settings.gradle │ ├── spotless.gradle │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── swmansion │ │ │ │ └── gesturehandler │ │ │ │ ├── RNGestureHandlerPackage.kt │ │ │ │ ├── core │ │ │ │ ├── DiagonalDirections.kt │ │ │ │ ├── FlingGestureHandler.kt │ │ │ │ ├── GestureHandler.kt │ │ │ │ ├── GestureHandlerInteractionController.kt │ │ │ │ ├── GestureHandlerOrchestrator.kt │ │ │ │ ├── GestureHandlerRegistry.kt │ │ │ │ ├── GestureUtils.kt │ │ │ │ ├── HoverGestureHandler.kt │ │ │ │ ├── LongPressGestureHandler.kt │ │ │ │ ├── ManualGestureHandler.kt │ │ │ │ ├── NativeViewGestureHandler.kt │ │ │ │ ├── OnTouchEventListener.kt │ │ │ │ ├── PanGestureHandler.kt │ │ │ │ ├── PinchGestureHandler.kt │ │ │ │ ├── PointerEventsConfig.kt │ │ │ │ ├── RotationGestureDetector.kt │ │ │ │ ├── RotationGestureHandler.kt │ │ │ │ ├── ScaleGestureDetector.java │ │ │ │ ├── StylusData.kt │ │ │ │ ├── TapGestureHandler.kt │ │ │ │ ├── Vector.kt │ │ │ │ └── ViewConfigurationHelper.kt │ │ │ │ └── react │ │ │ │ ├── Extensions.kt │ │ │ │ ├── RNGestureHandlerButtonViewManager.kt │ │ │ │ ├── RNGestureHandlerEnabledRootView.kt │ │ │ │ ├── RNGestureHandlerEvent.kt │ │ │ │ ├── RNGestureHandlerEventDispatcher.kt │ │ │ │ ├── RNGestureHandlerFactoryUtil.kt │ │ │ │ ├── RNGestureHandlerInteractionManager.kt │ │ │ │ ├── RNGestureHandlerModule.kt │ │ │ │ ├── RNGestureHandlerRegistry.kt │ │ │ │ ├── RNGestureHandlerRootHelper.kt │ │ │ │ ├── RNGestureHandlerRootInterface.kt │ │ │ │ ├── RNGestureHandlerRootView.kt │ │ │ │ ├── RNGestureHandlerRootViewManager.kt │ │ │ │ ├── RNGestureHandlerStateChangeEvent.kt │ │ │ │ ├── RNGestureHandlerTouchEvent.kt │ │ │ │ ├── RNViewConfigurationHelper.kt │ │ │ │ └── eventbuilders │ │ │ │ ├── FlingGestureHandlerEventDataBuilder.kt │ │ │ │ ├── GestureHandlerEventDataBuilder.kt │ │ │ │ ├── HoverGestureHandlerEventDataBuilder.kt │ │ │ │ ├── LongPressGestureHandlerEventDataBuilder.kt │ │ │ │ ├── ManualGestureHandlerEventDataBuilder.kt │ │ │ │ ├── NativeGestureHandlerEventDataBuilder.kt │ │ │ │ ├── PanGestureHandlerEventDataBuilder.kt │ │ │ │ ├── PinchGestureHandlerEventDataBuilder.kt │ │ │ │ ├── RotationGestureHandlerEventDataBuilder.kt │ │ │ │ └── TapGestureHandlerEventDataBuilder.kt │ │ │ └── jni │ │ │ ├── CMakeLists.txt │ │ │ └── cpp-adapter.cpp │ └── svg │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── swmansion │ │ └── gesturehandler │ │ └── RNSVGHitTester.kt │ ├── apple │ ├── Handlers │ │ ├── RNFlingHandler.h │ │ ├── RNFlingHandler.m │ │ ├── RNForceTouchHandler.h │ │ ├── RNForceTouchHandler.m │ │ ├── RNHoverHandler.h │ │ ├── RNHoverHandler.m │ │ ├── RNLongPressHandler.h │ │ ├── RNLongPressHandler.m │ │ ├── RNManualHandler.h │ │ ├── RNManualHandler.m │ │ ├── RNNativeViewHandler.h │ │ ├── RNNativeViewHandler.mm │ │ ├── RNPanHandler.h │ │ ├── RNPanHandler.m │ │ ├── RNPinchHandler.h │ │ ├── RNPinchHandler.m │ │ ├── RNRotationHandler.h │ │ ├── RNRotationHandler.m │ │ ├── RNTapHandler.h │ │ └── RNTapHandler.m │ ├── RNGHStylusData.h │ ├── RNGHStylusData.m │ ├── RNGHTouchEventType.h │ ├── RNGHUIKit.h │ ├── RNGHVector.h │ ├── RNGHVector.m │ ├── RNGestureHandler.h │ ├── RNGestureHandler.mm │ ├── RNGestureHandler.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── RNGestureHandlerActionType.h │ ├── RNGestureHandlerButton.h │ ├── RNGestureHandlerButton.mm │ ├── RNGestureHandlerButtonComponentView.h │ ├── RNGestureHandlerButtonComponentView.mm │ ├── RNGestureHandlerButtonManager.h │ ├── RNGestureHandlerButtonManager.mm │ ├── RNGestureHandlerDirection.h │ ├── RNGestureHandlerEvents.h │ ├── RNGestureHandlerEvents.m │ ├── RNGestureHandlerManager.h │ ├── RNGestureHandlerManager.mm │ ├── RNGestureHandlerModule.h │ ├── RNGestureHandlerModule.mm │ ├── RNGestureHandlerPointerTracker.h │ ├── RNGestureHandlerPointerTracker.m │ ├── RNGestureHandlerPointerType.h │ ├── RNGestureHandlerRegistry.h │ ├── RNGestureHandlerRegistry.m │ ├── RNGestureHandlerRootViewComponentView.mm │ ├── RNGestureHandlerState.h │ ├── RNGestureHandlerStateManager.h │ ├── RNManualActivationRecognizer.h │ ├── RNManualActivationRecognizer.m │ ├── RNRootViewGestureRecognizer.h │ └── RNRootViewGestureRecognizer.m │ ├── babel.config.js │ ├── jest-utils │ └── package.json │ ├── jest.config.js │ ├── jestSetup.js │ ├── package.json │ ├── scripts │ └── gesture_handler_utils.rb │ ├── src │ ├── ActionType.ts │ ├── Directions.ts │ ├── EnableNewWebImplementation.ts │ ├── GestureHandlerRootViewContext.ts │ ├── PlatformConstants.ts │ ├── PlatformConstants.web.ts │ ├── PointerType.ts │ ├── RNGestureHandlerModule.ts │ ├── RNGestureHandlerModule.web.ts │ ├── RNGestureHandlerModule.windows.ts │ ├── RNRenderer.ts │ ├── RNRenderer.web.ts │ ├── State.ts │ ├── TouchEventType.ts │ ├── __mocks__ │ │ └── RNGestureHandlerModule.ts │ ├── __tests__ │ │ ├── Events.test.tsx │ │ └── utils.test.tsx │ ├── components │ │ ├── DrawerLayout.tsx │ │ ├── GestureButtons.tsx │ │ ├── GestureButtonsProps.ts │ │ ├── GestureComponents.tsx │ │ ├── GestureComponents.web.tsx │ │ ├── GestureHandlerButton.tsx │ │ ├── GestureHandlerButton.web.tsx │ │ ├── GestureHandlerRootView.android.tsx │ │ ├── GestureHandlerRootView.tsx │ │ ├── GestureHandlerRootView.web.tsx │ │ ├── Pressable │ │ │ ├── Pressable.tsx │ │ │ ├── PressableProps.tsx │ │ │ ├── StateMachine.tsx │ │ │ ├── index.ts │ │ │ ├── stateDefinitions.ts │ │ │ └── utils.ts │ │ ├── ReanimatedDrawerLayout.tsx │ │ ├── ReanimatedSwipeable │ │ │ ├── ReanimatedSwipeable.tsx │ │ │ ├── ReanimatedSwipeableProps.ts │ │ │ └── index.ts │ │ ├── Swipeable.tsx │ │ ├── Text.tsx │ │ ├── gestureHandlerRootHOC.tsx │ │ ├── touchables │ │ │ ├── ExtraButtonProps.ts │ │ │ ├── GenericTouchable.tsx │ │ │ ├── GenericTouchableProps.ts │ │ │ ├── TouchableHighlight.tsx │ │ │ ├── TouchableNativeFeedback.android.tsx │ │ │ ├── TouchableNativeFeedback.tsx │ │ │ ├── TouchableNativeFeedbackProps.tsx │ │ │ ├── TouchableOpacity.tsx │ │ │ ├── TouchableWithoutFeedback.tsx │ │ │ └── index.ts │ │ └── utils.ts │ ├── findNodeHandle.ts │ ├── findNodeHandle.web.ts │ ├── getShadowNodeFromRef.ts │ ├── getShadowNodeFromRef.web.ts │ ├── ghQueueMicrotask.ts │ ├── handlers │ │ ├── FlingGestureHandler.ts │ │ ├── ForceTouchGestureHandler.ts │ │ ├── GestureHandlerEventPayload.ts │ │ ├── LongPressGestureHandler.ts │ │ ├── NativeViewGestureHandler.ts │ │ ├── PanGestureHandler.ts │ │ ├── PinchGestureHandler.ts │ │ ├── PressabilityDebugView.tsx │ │ ├── PressabilityDebugView.web.tsx │ │ ├── RotationGestureHandler.ts │ │ ├── TapGestureHandler.ts │ │ ├── createHandler.tsx │ │ ├── createNativeWrapper.tsx │ │ ├── customDirectEventTypes.ts │ │ ├── customDirectEventTypes.web.ts │ │ ├── gestureHandlerCommon.ts │ │ ├── gestureHandlerTypesCompat.ts │ │ ├── gestures │ │ │ ├── GestureDetector │ │ │ │ ├── Wrap.tsx │ │ │ │ ├── Wrap.web.tsx │ │ │ │ ├── attachHandlers.ts │ │ │ │ ├── dropHandlers.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── needsToReattach.ts │ │ │ │ ├── types.ts │ │ │ │ ├── updateHandlers.ts │ │ │ │ ├── useAnimatedGesture.ts │ │ │ │ ├── useDetectorUpdater.ts │ │ │ │ ├── useMountReactions.ts │ │ │ │ ├── useViewRefHandler.ts │ │ │ │ └── utils.ts │ │ │ ├── eventReceiver.ts │ │ │ ├── flingGesture.ts │ │ │ ├── forceTouchGesture.ts │ │ │ ├── gesture.ts │ │ │ ├── gestureComposition.ts │ │ │ ├── gestureObjects.ts │ │ │ ├── gestureStateManager.ts │ │ │ ├── gestureStateManager.web.ts │ │ │ ├── hoverGesture.ts │ │ │ ├── longPressGesture.ts │ │ │ ├── manualGesture.ts │ │ │ ├── nativeGesture.ts │ │ │ ├── panGesture.ts │ │ │ ├── pinchGesture.ts │ │ │ ├── reanimatedWrapper.ts │ │ │ ├── rotationGesture.ts │ │ │ └── tapGesture.ts │ │ ├── getNextHandlerTag.ts │ │ ├── handlersRegistry.ts │ │ └── utils.ts │ ├── index.ts │ ├── init.ts │ ├── jestUtils │ │ ├── index.ts │ │ └── jestUtils.ts │ ├── mocks │ │ ├── Pressable.tsx │ │ └── mocks.tsx │ ├── mountRegistry.ts │ ├── specs │ │ ├── NativeRNGestureHandlerModule.ts │ │ ├── RNGestureHandlerButtonNativeComponent.ts │ │ └── RNGestureHandlerRootViewNativeComponent.ts │ ├── typeUtils.ts │ ├── useIsomorphicLayoutEffect.tsx │ ├── utils.ts │ ├── web │ │ ├── Gestures.ts │ │ ├── constants.ts │ │ ├── detectors │ │ │ ├── RotationGestureDetector.ts │ │ │ └── ScaleGestureDetector.ts │ │ ├── handlers │ │ │ ├── FlingGestureHandler.ts │ │ │ ├── GestureHandler.ts │ │ │ ├── HoverGestureHandler.ts │ │ │ ├── IGestureHandler.ts │ │ │ ├── LongPressGestureHandler.ts │ │ │ ├── ManualGestureHandler.ts │ │ │ ├── NativeViewGestureHandler.ts │ │ │ ├── PanGestureHandler.ts │ │ │ ├── PinchGestureHandler.ts │ │ │ ├── RotationGestureHandler.ts │ │ │ └── TapGestureHandler.ts │ │ ├── interfaces.ts │ │ ├── tools │ │ │ ├── CircularBuffer.ts │ │ │ ├── EventManager.ts │ │ │ ├── GestureHandlerDelegate.ts │ │ │ ├── GestureHandlerOrchestrator.ts │ │ │ ├── GestureHandlerWebDelegate.ts │ │ │ ├── InteractionManager.ts │ │ │ ├── KeyboardEventManager.ts │ │ │ ├── LeastSquareSolver.ts │ │ │ ├── NodeManager.ts │ │ │ ├── PointerEventManager.ts │ │ │ ├── PointerTracker.ts │ │ │ ├── Vector.ts │ │ │ ├── VelocityTracker.ts │ │ │ └── WheelEventManager.ts │ │ └── utils.ts │ └── web_hammer │ │ ├── DiscreteGestureHandler.ts │ │ ├── DraggingGestureHandler.ts │ │ ├── Errors.ts │ │ ├── FlingGestureHandler.ts │ │ ├── GestureHandler.ts │ │ ├── IndiscreteGestureHandler.ts │ │ ├── LongPressGestureHandler.ts │ │ ├── NativeViewGestureHandler.ts │ │ ├── NodeManager.ts │ │ ├── PanGestureHandler.ts │ │ ├── PinchGestureHandler.ts │ │ ├── PressGestureHandler.ts │ │ ├── RotationGestureHandler.ts │ │ ├── TapGestureHandler.ts │ │ ├── constants.ts │ │ └── utils.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── scripts ├── check-android-dirs.js ├── check-rn-versions.js ├── clangd-add-xcode-step.rb ├── clangd-generate-xcode-metadata.sh ├── codegen-check-consistency.js ├── codegen-sync-archs.js ├── codegen-utils.js ├── format-android.js ├── format-apple.js └── release │ ├── npm-utils.js │ ├── set-package-version.js │ ├── should-be-latest.js │ └── version-utils.js ├── tsconfig.json └── yarn.lock /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.clang-format -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: software-mansion 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/publish-npm-package/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/actions/publish-npm-package/action.yml -------------------------------------------------------------------------------- /.github/workflows/android-build-paper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/android-build-paper.yml -------------------------------------------------------------------------------- /.github/workflows/android-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/android-build.yml -------------------------------------------------------------------------------- /.github/workflows/check-archs-consistency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/check-archs-consistency.yml -------------------------------------------------------------------------------- /.github/workflows/close-when-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/close-when-stale.yml -------------------------------------------------------------------------------- /.github/workflows/docs-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/docs-check.yml -------------------------------------------------------------------------------- /.github/workflows/ios-build-paper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/ios-build-paper.yml -------------------------------------------------------------------------------- /.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /.github/workflows/kotlin-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/kotlin-lint.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/needs-more-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/needs-more-info.yml -------------------------------------------------------------------------------- /.github/workflows/needs-repro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/needs-repro.yml -------------------------------------------------------------------------------- /.github/workflows/platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/platforms.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/static-example-apps-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/static-example-apps-checks.yml -------------------------------------------------------------------------------- /.github/workflows/static-root-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/static-root-checks.yml -------------------------------------------------------------------------------- /.github/workflows/yarn-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.github/workflows/yarn-validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarn/patches/@react-native-community-slider-npm-4.5.7-658e0e58c9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.yarn/patches/@react-native-community-slider-npm-4.5.7-658e0e58c9.patch -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.7.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.yarn/releases/yarn-4.7.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/README.md -------------------------------------------------------------------------------- /apps/basic-example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/.bundle/config -------------------------------------------------------------------------------- /apps/basic-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/.gitignore -------------------------------------------------------------------------------- /apps/basic-example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/Gemfile -------------------------------------------------------------------------------- /apps/basic-example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/Gemfile.lock -------------------------------------------------------------------------------- /apps/basic-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/README.md -------------------------------------------------------------------------------- /apps/basic-example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/build.gradle -------------------------------------------------------------------------------- /apps/basic-example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/debug.keystore -------------------------------------------------------------------------------- /apps/basic-example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/java/com/basicexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/java/com/basicexample/MainActivity.kt -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /apps/basic-example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apps/basic-example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/build.gradle -------------------------------------------------------------------------------- /apps/basic-example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/gradle.properties -------------------------------------------------------------------------------- /apps/basic-example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /apps/basic-example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /apps/basic-example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/gradlew -------------------------------------------------------------------------------- /apps/basic-example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/gradlew.bat -------------------------------------------------------------------------------- /apps/basic-example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/android/settings.gradle -------------------------------------------------------------------------------- /apps/basic-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/app.json -------------------------------------------------------------------------------- /apps/basic-example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/babel.config.js -------------------------------------------------------------------------------- /apps/basic-example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/index.js -------------------------------------------------------------------------------- /apps/basic-example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/.xcode.env -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample/AppDelegate.swift -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample/Info.plist -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /apps/basic-example/ios/BasicExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/BasicExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /apps/basic-example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/Podfile -------------------------------------------------------------------------------- /apps/basic-example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/ios/Podfile.lock -------------------------------------------------------------------------------- /apps/basic-example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /apps/basic-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/metro.config.js -------------------------------------------------------------------------------- /apps/basic-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/package.json -------------------------------------------------------------------------------- /apps/basic-example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/App.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/ComponentsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/ComponentsScreen.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/FinalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/FinalScreen.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/GestureCompositionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/GestureCompositionScreen.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/HomeScreen.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/Navigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/Navigator.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/ViewFlatteningScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/ViewFlatteningScreen.tsx -------------------------------------------------------------------------------- /apps/basic-example/src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/colors.ts -------------------------------------------------------------------------------- /apps/basic-example/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/src/utils.ts -------------------------------------------------------------------------------- /apps/basic-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/basic-example/tsconfig.json -------------------------------------------------------------------------------- /apps/common-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/.gitignore -------------------------------------------------------------------------------- /apps/common-app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/App.tsx -------------------------------------------------------------------------------- /apps/common-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/README.md -------------------------------------------------------------------------------- /apps/common-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/index.ts -------------------------------------------------------------------------------- /apps/common-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/package.json -------------------------------------------------------------------------------- /apps/common-app/src/ListWithHeader/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/ListWithHeader/Header.tsx -------------------------------------------------------------------------------- /apps/common-app/src/ListWithHeader/ListWithHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/ListWithHeader/ListWithHeader.tsx -------------------------------------------------------------------------------- /apps/common-app/src/ListWithHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/ListWithHeader/index.ts -------------------------------------------------------------------------------- /apps/common-app/src/ListWithHeader/signet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/ListWithHeader/signet.png -------------------------------------------------------------------------------- /apps/common-app/src/ListWithHeader/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/ListWithHeader/text.png -------------------------------------------------------------------------------- /apps/common-app/src/basic/bouncing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/bouncing/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/draggable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/draggable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/fling/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/fling/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/forcetouch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/forcetouch/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/horizontalDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/horizontalDrawer/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/multitap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/multitap/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/pagerAndDrawer/index.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/pagerAndDrawer/index.android.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/pagerAndDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/pagerAndDrawer/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/basic/panResponder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/basic/panResponder/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/common.tsx -------------------------------------------------------------------------------- /apps/common-app/src/config.tsx: -------------------------------------------------------------------------------- 1 | export const USE_NATIVE_DRIVER = true; 2 | -------------------------------------------------------------------------------- /apps/common-app/src/empty/EmptyExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/empty/EmptyExample.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/betterHorizontalDrawer/BetterHorizonatalDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/betterHorizontalDrawer/BetterHorizonatalDrawer.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/betterHorizontalDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/betterHorizontalDrawer/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/bottom_sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/bottom_sheet/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/calculator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/calculator/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/camera/AnimatedCameraView.macos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/camera/AnimatedCameraView.macos.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/camera/AnimatedCameraView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/camera/AnimatedCameraView.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/camera/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/camera/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/chat_heads/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/chat_heads/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/drag_n_drop/DragAndDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/drag_n_drop/DragAndDrop.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/drag_n_drop/Draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/drag_n_drop/Draggable.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/drag_n_drop/Tile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/drag_n_drop/Tile.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/drag_n_drop/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/drag_n_drop/constants.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/drag_n_drop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/drag_n_drop/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hover/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/freeze.png -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/gh.png -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/rea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/rea.png -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/screens.png -------------------------------------------------------------------------------- /apps/common-app/src/new_api/hoverable_icons/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/hoverable_icons/svg.png -------------------------------------------------------------------------------- /apps/common-app/src/new_api/manualGestures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/manualGestures/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/overlap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/overlap/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/pressable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/pressable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/swipeable/AppleStyleSwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/swipeable/AppleStyleSwipeableRow.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/swipeable/GmailStyleSwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/swipeable/GmailStyleSwipeableRow.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/swipeable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/swipeable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/transformations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/transformations/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/new_api/velocityTest/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/new_api/velocityTest/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/recipes/panAndScroll/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/recipes/panAndScroll/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/recipes/scaleAndRotate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/recipes/scaleAndRotate/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/recipes/scaleAndRotate/swm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/recipes/scaleAndRotate/swm.svg -------------------------------------------------------------------------------- /apps/common-app/src/recipes/scaleAndRotate/swmansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/recipes/scaleAndRotate/swmansion.png -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/StylusData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/StylusData/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/combo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/combo/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/contextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/contextMenu/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/doubleDraggable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/doubleDraggable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/doubleScalePinchAndRotate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/doubleScalePinchAndRotate/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/androidRippleExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/androidRippleExample.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/delayedPressExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/delayedPressExample.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/hitSlopExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/hitSlopExample.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/hoverDelayExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/hoverDelayExample.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/gesturizedPressable/testingBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/gesturizedPressable/testingBase.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/mouseButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/mouseButtons/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedButtons/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedFling/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedFling/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedGHRootViewWithModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedGHRootViewWithModal/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedPressables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedPressables/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedText/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/nestedTouchables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/nestedTouchables/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/overflowParent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/overflowParent/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/pointerType/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/pointerType/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/reanimatedDrawerLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/reanimatedDrawerLayout/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/rectButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/rectButton/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/rows/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/rows/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/svg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/svg/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/swipeableReanimation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/swipeableReanimation/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/touchables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/touchables/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/twoFingerPan/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/twoFingerPan/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/release_tests/webStylesReset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/release_tests/webStylesReset/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/showcase/bottomSheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/showcase/bottomSheet/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/showcase/chatHeads/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/showcase/chatHeads/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/showcase/swipeable/AppleStyleSwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/showcase/swipeable/AppleStyleSwipeableRow.tsx -------------------------------------------------------------------------------- /apps/common-app/src/showcase/swipeable/GmailStyleSwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/showcase/swipeable/GmailStyleSwipeableRow.tsx -------------------------------------------------------------------------------- /apps/common-app/src/showcase/swipeable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/showcase/swipeable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/simple/draggable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/simple/draggable/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/simple/fling/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/simple/fling/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/simple/longPress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/simple/longPress/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/simple/manual/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/simple/manual/index.tsx -------------------------------------------------------------------------------- /apps/common-app/src/simple/tap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/src/simple/tap/index.tsx -------------------------------------------------------------------------------- /apps/common-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/common-app/tsconfig.json -------------------------------------------------------------------------------- /apps/expo-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/.gitignore -------------------------------------------------------------------------------- /apps/expo-example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/App.tsx -------------------------------------------------------------------------------- /apps/expo-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/README.md -------------------------------------------------------------------------------- /apps/expo-example/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/app.config.js -------------------------------------------------------------------------------- /apps/expo-example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /apps/expo-example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/assets/favicon.png -------------------------------------------------------------------------------- /apps/expo-example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/assets/icon.png -------------------------------------------------------------------------------- /apps/expo-example/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/assets/splash-icon.png -------------------------------------------------------------------------------- /apps/expo-example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/assets/splash.png -------------------------------------------------------------------------------- /apps/expo-example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/index.ts -------------------------------------------------------------------------------- /apps/expo-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/metro.config.js -------------------------------------------------------------------------------- /apps/expo-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/package.json -------------------------------------------------------------------------------- /apps/expo-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/expo-example/tsconfig.json -------------------------------------------------------------------------------- /apps/macos-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/.gitignore -------------------------------------------------------------------------------- /apps/macos-example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/Gemfile -------------------------------------------------------------------------------- /apps/macos-example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/Gemfile.lock -------------------------------------------------------------------------------- /apps/macos-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/README.md -------------------------------------------------------------------------------- /apps/macos-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/app.json -------------------------------------------------------------------------------- /apps/macos-example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/babel.config.js -------------------------------------------------------------------------------- /apps/macos-example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/index.ts -------------------------------------------------------------------------------- /apps/macos-example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /apps/macos-example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/.gitignore -------------------------------------------------------------------------------- /apps/macos-example/macos/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/AppDelegate.h -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/AppDelegate.mm -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/Info.plist -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/MacOSExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/MacOSExample.entitlements -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample-macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample-macOS/main.m -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/macos-example/macos/MacOSExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/MacOSExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/macos-example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/Podfile -------------------------------------------------------------------------------- /apps/macos-example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/Podfile.lock -------------------------------------------------------------------------------- /apps/macos-example/macos/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/macos/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /apps/macos-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/metro.config.js -------------------------------------------------------------------------------- /apps/macos-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/package.json -------------------------------------------------------------------------------- /apps/macos-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/apps/macos-example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/package.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/.gitignore -------------------------------------------------------------------------------- /packages/docs-gesture-handler/.yarn/releases/yarn-1.22.22.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/.yarn/releases/yarn-1.22.22.cjs -------------------------------------------------------------------------------- /packages/docs-gesture-handler/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/.yarnrc -------------------------------------------------------------------------------- /packages/docs-gesture-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/README.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/babel.config.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/components/GifGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/components/GifGallery.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/buttons.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/buttons.mdx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/drawer-layout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/drawer-layout.mdx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/pressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/pressable.mdx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/reanimated-drawer-layout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/reanimated-drawer-layout.mdx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/reanimated_swipeable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/reanimated_swipeable.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/swipeable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/swipeable.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/components/touchables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/components/touchables.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/fundamentals/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/fundamentals/gesture-composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/fundamentals/gesture-composition.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/fundamentals/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/fundamentals/installation.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/fundamentals/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/fundamentals/introduction.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/fundamentals/states-events.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/fundamentals/states-events.mdx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/about-handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/about-handlers.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/common-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/common-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/create-native-wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/create-native-wrapper.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/fling-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/fling-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/force-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/force-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/interactions.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/longpress-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/longpress-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/nativeview-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/nativeview-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/pan-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/pan-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/pinch-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/pinch-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/rotation-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/rotation-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gesture-handlers/tap-gh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gesture-handlers/tap-gh.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-callbacks.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-config.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-event-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/_shared/base-gesture-event-data.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/composed-gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/composed-gestures.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/fling-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/fling-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/force-touch-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/force-touch-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/gesture-detector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/gesture-detector.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/hover-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/hover-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/long-press-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/long-press-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/manual-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/manual-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/native-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/native-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/pan-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/pan-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/pinch-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/pinch-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/rotation-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/rotation-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/state-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/state-manager.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/tap-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/tap-gesture.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/gestures/touch-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/gestures/touch-events.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step1.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step2.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step3.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step4.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step5.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step6.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/_steps/step7.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/manual-gestures/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/manual-gestures/index.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/migrating-off-rnghenabledroot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/migrating-off-rnghenabledroot.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/_steps/step1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/_steps/step1.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/_steps/step2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/_steps/step2.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/_steps/step3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/_steps/step3.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/_steps/step4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/_steps/step4.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/_steps/step5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/_steps/step5.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/quickstart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/quickstart/index.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/swipe-and-scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/swipe-and-scroll.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/testing.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/troubleshooting.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/guides/upgrading-to-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/guides/upgrading-to-2.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/under-the-hood/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/under-the-hood/_category_.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/under-the-hood/how-does-it-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/under-the-hood/how-does-it-work.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docs/under-the-hood/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docs/under-the-hood/state.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/docusaurus.config.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/package.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/scripts/build-og-images.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/scripts/build-og-images.jsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/scripts/og-image-stream.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/scripts/og-image-stream.jsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/sidebars.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/AlgoliaSearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/AlgoliaSearchBar/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/AnimableIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/AnimableIcon/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/AnimableIcon/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/AnimableIcon/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/CollapseButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/CollapseButton/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/CollapseButton/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/CollapseButton/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/CollapsibleCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/CollapsibleCode/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/CollapsibleCode/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/CollapsibleCode/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/FooterBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/FooterBackground/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/GestureExamples/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/GestureExamples/utils.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/GestureFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/GestureFeatures/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/Planets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Hero/Planets/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/Planets/styles.module.css: -------------------------------------------------------------------------------- 1 | .planets { 2 | position: absolute; 3 | right: 0; 4 | } 5 | -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/Stars/StarsIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Hero/Stars/StarsIcon/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/Stars/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Hero/Stars/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/Stars/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Hero/Stars/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Hero/StartScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Hero/StartScreen/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/HomepageButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/HomepageButton/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/InteractiveExample/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/InteractiveExample/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Moon/MoonIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Moon/MoonIcon/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Moon/MoonIcon/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Moon/MoonIcon/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Moon/MoonIconDark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Moon/MoonIconDark/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Playground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Playground/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Playground/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Playground/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/RadonBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/RadonBanner/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/RadonBanner/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/RadonBanner/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/ReducedMotionWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/ReducedMotionWarning/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/SidebarLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/SidebarLabel/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/SidebarLabel/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/SidebarLabel/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Sponsors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Sponsors/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Sponsors/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Sponsors/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Testimonials/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Testimonials/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Testimonials/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Testimonials/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Wave/WaveIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Wave/WaveIcon/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Wave/WaveIcon/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Wave/WaveIcon/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Wave/WaveIconBig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Wave/WaveIconBig/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/components/Wave/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/components/Wave/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/css/colors.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/css/index.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/css/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/css/overrides.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/css/typography.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/examples/GestureStateFlowExample/Arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/examples/GestureStateFlowExample/Arrow.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/examples/GestureStateFlowExample/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/examples/GestureStateFlowExample/index.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/hooks/usePageType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/hooks/usePageType.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/hooks/useScreenSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/hooks/useScreenSize.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/pages/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/pages/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Admonition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Admonition/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/AnnouncementBar/CloseButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/AnnouncementBar/CloseButton/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/AnnouncementBar/Content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/AnnouncementBar/Content/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/AnnouncementBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/AnnouncementBar/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/AnnouncementBar/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/AnnouncementBar/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/CodeBlock/highlighting-dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/CodeBlock/highlighting-dark.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/CodeBlock/highlighting-light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/CodeBlock/highlighting-light.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocCard/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocItem/Metadata/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocItem/Metadata/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocItem/TOC/Mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocItem/TOC/Mobile/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocSidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocSidebar/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocSidebarItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocSidebarItem/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/DocSidebarItems/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/DocSidebarItems/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Footer/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/MDXComponents/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/MDXComponents/Details.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/MDXComponents/DetailsStyling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/MDXComponents/DetailsStyling.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/MDXComponents/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/MDXComponents/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Navbar/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/NotFound/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/NotFound/mapLegacyUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/NotFound/mapLegacyUrl.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/PaginatorNavLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/PaginatorNavLink/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Root.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/SearchPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/SearchPage/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Step/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Step/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/Step/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/Step/styles.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/TOCCollapsible/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/TOCCollapsible/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/TOCItems/Tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/TOCItems/Tree.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/TOCItems/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/TOCItems/index.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/theme/muiTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/theme/muiTheme.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/utils/getGestureStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/utils/getGestureStyles.tsx -------------------------------------------------------------------------------- /packages/docs-gesture-handler/src/utils/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/src/utils/style.module.css -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/FlingGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/FlingGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/FlingGestureBasicSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/FlingGestureBasicSrc.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/HoverGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/HoverGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/LongPressGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/LongPressGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/PanGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/PanGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/PanGestureBasicSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/PanGestureBasicSrc.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/PinchGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/PinchGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/PinchGestureBasicSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/PinchGestureBasicSrc.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/RotationGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/RotationGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/RotationGestureBasicSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/RotationGestureBasicSrc.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/examples/TapGestureBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/examples/TapGestureBasic.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Air.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Air.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Air.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Air.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-AirItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-AirItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-AirItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-AirItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Black.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Black.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-BlackItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-BlackItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Bold.otf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Bold.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Bold.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-BoldItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-BoldItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Light.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Light.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-LightItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-LightItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Medium.otf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Medium.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Medium.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-MediumItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-MediumItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Regular.otf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Regular.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Regular.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-RegularItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-RegularItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Thin.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-Thin.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-ThinItalic.woff -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Aeonik-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Aeonik-ThinItalic.woff2 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/DMMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/DMMono-Regular.ttf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Lexend-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Lexend-Bold.ttf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/fonts/Lexend-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/fonts/Lexend-SemiBold.ttf -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/androidbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/androidbutton.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/androidmail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/androidmail.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/androidsettings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/androidsettings.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/drawer-back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/drawer-back.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/drawer-front.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/drawer-front.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/drawer-parallax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/drawer-parallax.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/drawer-slide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/drawer-slide.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/iosmail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/iosmail.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/iossettings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/iossettings.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/new-drawer-back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/new-drawer-back.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/new-drawer-front.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/new-drawer-front.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/new-drawer-slide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/new-drawer-slide.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/pressable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/pressable.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/sampleapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/sampleapp.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/samplebutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/samplebutton.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/gifs/sampleswipeable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/gifs/sampleswipeable.gif -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/Arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/Arrow-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/Arrow.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-circle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-circle-left.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-left-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-left-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-left.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-right-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-right-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-right-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-right-hero.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/arrow-right.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/brand-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/brand-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/brand.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/card-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/card-icon-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/card-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/card-icon.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/copy-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/copy-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/copy.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/danger-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/danger-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/danger.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/expo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/expo-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/expo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/expo.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/favicon.ico -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/github.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/hand-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/hand-one.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/hand-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/hand-two.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/logo-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/logo-hero.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/og-image.png -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/pinch-reworked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/pinch-reworked.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/react-native-paradise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/react-native-paradise.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/reset-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/reset-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/reset.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/shopify-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/shopify-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/shopify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/shopify.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/state-of-react-native-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/state-of-react-native-logo.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/swmLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/swmLogo.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/title-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/title-dark.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/title.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/img/two-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/img/two-arrows.svg -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/js/snack-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/js/snack-helpers.js -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/fling.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/fling.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/hover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/hover.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/longpress.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/longpress.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/pan.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/pan.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/pinch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/pinch.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/rotation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/rotation.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/static/video/tap.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/static/video/tap.mp4 -------------------------------------------------------------------------------- /packages/docs-gesture-handler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/tsconfig.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/unproccessed/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/unproccessed/og-image.png -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/about-handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/about-handlers.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/contributing.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/credits.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/example.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/getting-started.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/interactions.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/resources.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/state.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_docs/version-1.x/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_docs/version-1.x/troubleshooting.md -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versioned_sidebars/version-1.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/versioned_sidebars/version-1.x-sidebars.json -------------------------------------------------------------------------------- /packages/docs-gesture-handler/versions.json: -------------------------------------------------------------------------------- 1 | ["1.x"] 2 | -------------------------------------------------------------------------------- /packages/docs-gesture-handler/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/docs-gesture-handler/yarn.lock -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/.gitignore -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/DrawerLayout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/DrawerLayout/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/LICENSE -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/RNGestureHandler.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/RNGestureHandler.podspec -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/ReanimatedDrawerLayout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/ReanimatedDrawerLayout/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/ReanimatedSwipeable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/ReanimatedSwipeable/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/Swipeable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/Swipeable/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/build.gradle -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/gradle.properties -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/gradlew -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/gradlew.bat -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include 'lib' -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/spotless.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/spotless.gradle -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNFlingHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNFlingHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNFlingHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNFlingHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNForceTouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNForceTouchHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNForceTouchHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNForceTouchHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNHoverHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNHoverHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNHoverHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNHoverHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNLongPressHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNLongPressHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNLongPressHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNLongPressHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNManualHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNManualHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNManualHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNManualHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNNativeViewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNNativeViewHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNNativeViewHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNNativeViewHandler.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNPanHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNPanHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNPanHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNPanHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNPinchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNPinchHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNPinchHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNPinchHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNRotationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNRotationHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNRotationHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNRotationHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNTapHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNTapHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/Handlers/RNTapHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/Handlers/RNTapHandler.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHStylusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHStylusData.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHStylusData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHStylusData.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHTouchEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHTouchEventType.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHUIKit.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHVector.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGHVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGHVector.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandler.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandler.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerActionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerActionType.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerButton.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerButton.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerButtonManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerButtonManager.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerButtonManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerButtonManager.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerDirection.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerEvents.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerEvents.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerManager.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerManager.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerModule.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerModule.mm -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerPointerTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerPointerTracker.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerPointerTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerPointerTracker.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerPointerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerPointerType.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerRegistry.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerRegistry.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerState.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNGestureHandlerStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNGestureHandlerStateManager.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNManualActivationRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNManualActivationRecognizer.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNManualActivationRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNManualActivationRecognizer.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNRootViewGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNRootViewGestureRecognizer.h -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/apple/RNRootViewGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/apple/RNRootViewGestureRecognizer.m -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/babel.config.js -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/jest-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/jest-utils/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/jestSetup.js -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/package.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/scripts/gesture_handler_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/scripts/gesture_handler_utils.rb -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/ActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/ActionType.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/Directions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/Directions.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/EnableNewWebImplementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/EnableNewWebImplementation.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/GestureHandlerRootViewContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/GestureHandlerRootViewContext.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/PlatformConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/PlatformConstants.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/PlatformConstants.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/PlatformConstants.web.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/PointerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/PointerType.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/RNGestureHandlerModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/RNGestureHandlerModule.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/RNGestureHandlerModule.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/RNGestureHandlerModule.web.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/RNGestureHandlerModule.windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/RNGestureHandlerModule.windows.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/RNRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/RNRenderer.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/RNRenderer.web.ts: -------------------------------------------------------------------------------- 1 | export const RNRenderer = { 2 | findHostInstance_DEPRECATED: (_ref: any) => null, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/State.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/TouchEventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/TouchEventType.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/__tests__/Events.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/__tests__/Events.test.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/__tests__/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/__tests__/utils.test.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/DrawerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/DrawerLayout.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/GestureButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/GestureButtons.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/GestureButtonsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/GestureButtonsProps.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/GestureComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/GestureComponents.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/Pressable/Pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/Pressable/Pressable.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/Pressable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/Pressable/index.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/Pressable/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/Pressable/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/Swipeable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/Swipeable.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/Text.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/touchables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/touchables/index.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/components/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/findNodeHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/findNodeHandle.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/findNodeHandle.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/findNodeHandle.web.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/getShadowNodeFromRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/getShadowNodeFromRef.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/getShadowNodeFromRef.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/getShadowNodeFromRef.web.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/ghQueueMicrotask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/ghQueueMicrotask.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/FlingGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/FlingGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/PanGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/PanGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/PinchGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/PinchGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/PressabilityDebugView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/PressabilityDebugView.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/RotationGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/RotationGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/TapGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/TapGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/createHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/createHandler.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/createNativeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/createNativeWrapper.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/customDirectEventTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/customDirectEventTypes.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestureHandlerCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestureHandlerCommon.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/eventReceiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/eventReceiver.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/flingGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/flingGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/gesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/gesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/hoverGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/hoverGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/manualGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/manualGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/nativeGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/nativeGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/panGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/panGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/pinchGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/pinchGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/gestures/tapGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/gestures/tapGesture.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/getNextHandlerTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/getNextHandlerTag.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/handlersRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/handlersRegistry.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/handlers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/handlers/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/index.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/init.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/jestUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/jestUtils/index.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/jestUtils/jestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/jestUtils/jestUtils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/mocks/Pressable.tsx: -------------------------------------------------------------------------------- 1 | export { Pressable as default } from 'react-native'; 2 | -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/mocks/mocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/mocks/mocks.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/mountRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/mountRegistry.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/typeUtils.ts: -------------------------------------------------------------------------------- 1 | export type ValueOf = T[keyof T]; 2 | -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/useIsomorphicLayoutEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/useIsomorphicLayoutEffect.tsx -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/Gestures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/Gestures.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/constants.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/handlers/GestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/handlers/GestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/handlers/IGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/handlers/IGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/handlers/PanGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/handlers/PanGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/handlers/TapGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/handlers/TapGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/interfaces.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/CircularBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/CircularBuffer.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/EventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/EventManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/InteractionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/InteractionManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/KeyboardEventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/KeyboardEventManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/LeastSquareSolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/LeastSquareSolver.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/NodeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/NodeManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/PointerEventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/PointerEventManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/PointerTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/PointerTracker.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/Vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/Vector.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/VelocityTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/VelocityTracker.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/tools/WheelEventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/tools/WheelEventManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/Errors.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/FlingGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/FlingGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/GestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/GestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/NodeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/NodeManager.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/PanGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/PanGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/PinchGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/PinchGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/PressGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/PressGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/TapGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/TapGestureHandler.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/constants.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/src/web_hammer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/src/web_hammer/utils.ts -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react-native-gesture-handler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/packages/react-native-gesture-handler/tsconfig.json -------------------------------------------------------------------------------- /scripts/check-android-dirs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/check-android-dirs.js -------------------------------------------------------------------------------- /scripts/check-rn-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/check-rn-versions.js -------------------------------------------------------------------------------- /scripts/clangd-add-xcode-step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/clangd-add-xcode-step.rb -------------------------------------------------------------------------------- /scripts/clangd-generate-xcode-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/clangd-generate-xcode-metadata.sh -------------------------------------------------------------------------------- /scripts/codegen-check-consistency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/codegen-check-consistency.js -------------------------------------------------------------------------------- /scripts/codegen-sync-archs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/codegen-sync-archs.js -------------------------------------------------------------------------------- /scripts/codegen-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/codegen-utils.js -------------------------------------------------------------------------------- /scripts/format-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/format-android.js -------------------------------------------------------------------------------- /scripts/format-apple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/format-apple.js -------------------------------------------------------------------------------- /scripts/release/npm-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/release/npm-utils.js -------------------------------------------------------------------------------- /scripts/release/set-package-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/release/set-package-version.js -------------------------------------------------------------------------------- /scripts/release/should-be-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/release/should-be-latest.js -------------------------------------------------------------------------------- /scripts/release/version-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/scripts/release/version-utils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/software-mansion/react-native-gesture-handler/HEAD/yarn.lock --------------------------------------------------------------------------------