move comment

This commit is contained in:
Oleksii Bulenok
2026-07-22 19:02:57 +02:00
parent 05ea340425
commit 1ddc43cd4a
2 changed files with 5 additions and 5 deletions
-5
View File
@@ -201,11 +201,6 @@ export function InterestTabs({
return (
<View style={[a.relative, a.flex_row]}>
{/*
* BlockDrawerGesture must wrap the ScrollView directly - Gesture.Native()
* only works when attached to the natively scrollable view. On the new
* arch (Android), attaching it to a wrapper view breaks scrolling.
*/}
<BlockDrawerGesture>
<DraggableScrollView
ref={listRef}
+5
View File
@@ -2,6 +2,11 @@ import {useContext} from 'react'
import {DrawerGestureContext} from 'react-native-drawer-layout'
import {Gesture, GestureDetector} from 'react-native-gesture-handler'
/**
* BlockDrawerGesture must wrap the ScrollView directly - Gesture.Native()
* only works when attached to the natively scrollable view. On the new
* arch (Android), attaching it to a wrapper view breaks scrolling.
*/
export function BlockDrawerGesture({children}: {children: React.ReactNode}) {
const drawerGesture = useContext(DrawerGestureContext) ?? Gesture.Native() // noop for web
let scrollGesture = Gesture.Native()