File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { FlatList } from 'react-native' ;
1
2
import type { GestureHandlerRef , SVGRef } from './web/interfaces' ;
2
3
import { isRNSVGElement } from './web/utils' ;
3
4
4
5
export default function findNodeHandle (
5
6
viewRef : GestureHandlerRef | SVGRef | HTMLElement | SVGElement
6
7
) : HTMLElement | SVGElement | number {
8
+ // TODO: Remove this once we remove old API.
9
+ if ( viewRef instanceof FlatList ) {
10
+ // @ts -ignore This is the only way to get the scroll ref from FlatList.
11
+ return viewRef . _listRef . _scrollRef . firstChild ;
12
+ }
7
13
// Old API assumes that child handler is HTMLElement.
8
14
// However, if we nest handlers, we will get ref to another handler.
9
15
// In that case, we want to recursively call findNodeHandle with new handler viewTag (which can also be ref to another handler).
You can’t perform that action at this time.
0 commit comments