Files
bsky-social-app/src/view/com/pager/DraggableScrollView.tsx
T
2026-08-25 01:32:14 +01:00

26 lines
592 B
TypeScript

import {type ComponentPropsWithRef} from 'react'
import {ScrollView} from 'react-native'
import {useDraggableScroll} from '#/lib/hooks/useDraggableScrollView'
import {atoms as a, web} from '#/alf'
export function DraggableScrollView({
ref,
style,
...props
}: ComponentPropsWithRef<typeof ScrollView>) {
const {refs} = useDraggableScroll<React.ComponentRef<typeof ScrollView>>({
outerRef: ref,
cursor: 'grab', // optional, default
})
return (
<ScrollView
ref={refs}
style={[style, web(a.user_select_none)]}
horizontal
{...props}
/>
)
}