Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ec2604

Browse files
committedMar 18, 2024
refactor scrollable ref & native gestures using useAnimatedRef and Reanimated.ScrollView + createNativeWrapper
remove preserveScrollMomentum + scrollBuffer + lockableScrollableContentOffsetY props we're using `preserveScrollMomentum` in the media picker, but i'm removing it because i feel the behavior is actually detrimental to the UX, and to simplify the refactor to scrollEnabled in the next commit. `lockableScrollableContentOffsetY` is removed since it won't be necessary after the scrollEnabled refactor `scrollBuffer` was no longer used. removed custom gesture/scroll handling hooks after refactoring to use scrollEnabled, we can add other props to add custom behaviors if needed. refactored scroll/pan gesture interaction using animated scrollEnabled prop based on software-mansion/react-native-gesture-handler#420 (comment)
1 parent 8093e96 commit 2ec2604

31 files changed

+317
-1560
lines changed
 

‎example/app/src/screens/advanced/customGestureHandling/CustomGestureHandling.tsx

-115
This file was deleted.

‎example/app/src/screens/advanced/customGestureHandling/GestureTranslationContext.tsx

-12
This file was deleted.

‎example/app/src/screens/advanced/customGestureHandling/useCustomScrollEventsHandlers.tsx

-209
This file was deleted.

‎example/app/src/screens/index.ts

-7
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,6 @@ export const screens = [
112112
slug: 'Advanced/PullToRefreshExample',
113113
getScreen: () => require('./advanced/PullToRefreshExample').default,
114114
},
115-
{
116-
name: 'Custom Gesture Handling',
117-
slug: 'Advanced/CustomGestureHandling',
118-
getScreen: () =>
119-
require('./advanced/customGestureHandling/CustomGestureHandling')
120-
.default,
121-
},
122115
] as ShowcaseExampleScreenType[],
123116
},
124117
];

0 commit comments

Comments
 (0)
Please sign in to comment.