File tree 6 files changed +32
-13
lines changed
packages/core/src/components
6 files changed +32
-13
lines changed Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
- import { FlatList as FlatListstComponent } from "react-native" ;
2
+ import {
3
+ FlatList as FlatListComponent ,
4
+ NativeViewGestureHandlerProps ,
5
+ } from "react-native-gesture-handler" ;
3
6
import type { FlatListProps } from "react-native" ;
4
7
5
- const FlatList = React . forwardRef < FlatListstComponent , FlatListProps < any > > (
8
+ const FlatList = React . forwardRef <
9
+ FlatListComponent ,
10
+ FlatListProps < any > & NativeViewGestureHandlerProps
11
+ > (
6
12
< T extends any > (
7
- { numColumns, ...rest } : FlatListProps < T > ,
8
- ref : React . Ref < FlatListstComponent >
13
+ { numColumns, ...rest } : FlatListProps < T > & NativeViewGestureHandlerProps ,
14
+ ref : React . Ref < FlatListComponent >
9
15
) => {
10
16
return (
11
- < FlatListstComponent
17
+ < FlatListComponent
12
18
key = { numColumns } // Changing numColumns requires re-rendering, setting it as the key ensures list is re-rendered when it changes
13
19
numColumns = { numColumns }
14
20
ref = { ref }
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import { FlashListProps , FlashList } from "@shopify/flash-list" ;
3
- import { FlatListProps , FlatList as FlatListComponent } from "react-native" ;
3
+ import { FlatListProps } from "react-native" ;
4
+ import {
5
+ FlatList as FlatListComponent ,
6
+ NativeViewGestureHandlerProps ,
7
+ } from "react-native-gesture-handler" ;
4
8
import SectionHeader , { DefaultSectionHeader } from "./SectionHeader" ;
5
9
import { flattenReactFragments } from "../../utilities" ;
6
10
import FlatList from "../FlatList" ;
@@ -192,7 +196,8 @@ const SectionList = React.forwardRef(
192
196
< FlatList
193
197
ref = { ref as React . Ref < FlatListComponent > }
194
198
stickyHeaderIndices = { sectionHeaderIndicies }
195
- { ...( rest as FlatListProps < SectionListItem < T > > ) }
199
+ { ...( rest as FlatListProps < SectionListItem < T > > &
200
+ NativeViewGestureHandlerProps ) }
196
201
data = { dataWithSections }
197
202
renderItem = { renderItem }
198
203
keyExtractor = { keyExtractor }
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import FlatList from "../FlatList" ;
3
- import { FlatList as FlatListComponent } from "react-native" ;
3
+ import {
4
+ FlatList as FlatListComponent ,
5
+ NativeViewGestureHandlerProps ,
6
+ } from "react-native-gesture-handler" ;
4
7
import type { FlatListProps } from "react-native" ;
5
8
import useSplitContentContainerStyles from "./useSplitContentContainerStyles" ;
6
9
@@ -14,7 +17,8 @@ const SimpleStyleFlatList = React.forwardRef(
14
17
style : styleProp ,
15
18
data,
16
19
...rest
17
- } : Omit < FlatListProps < T > , "contentContainerStyle" > ,
20
+ } : Omit < FlatListProps < T > , "contentContainerStyle" > &
21
+ NativeViewGestureHandlerProps ,
18
22
ref : React . Ref < FlatListComponent >
19
23
) => {
20
24
const { style, contentContainerStyle } =
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type {
5
5
FlashListSectionListProps ,
6
6
} from "../SectionList" ;
7
7
import useSplitContentContainerStyles from "./useSplitContentContainerStyles" ;
8
- import { FlatList } from "react-native" ;
8
+ import { FlatList } from "react-native-gesture-handler " ;
9
9
import { FlashList } from "@shopify/flash-list" ;
10
10
11
11
/**
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type {
5
5
FlatListSwipeableListProps ,
6
6
} from "../SwipeableItem" ;
7
7
import useSplitContentContainerStyles from "./useSplitContentContainerStyles" ;
8
- import { FlatList } from "react-native" ;
8
+ import { FlatList } from "react-native-gesture-handler " ;
9
9
import { FlashList } from "@shopify/flash-list" ;
10
10
11
11
/**
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import { FlashListProps , FlashList } from "@shopify/flash-list" ;
3
- import { FlatListProps , FlatList as FlatListComponent } from "react-native" ;
3
+ import { FlatListProps } from "react-native" ;
4
+ import {
5
+ FlatList as FlatListComponent ,
6
+ NativeViewGestureHandlerProps ,
7
+ } from "react-native-gesture-handler" ;
4
8
import FlatList from "../FlatList" ;
5
9
6
10
type ListComponentType = "FlatList" | "FlashList" ;
@@ -54,7 +58,7 @@ const SwipeableList = React.forwardRef(
54
58
return (
55
59
< FlatList
56
60
ref = { ref as React . Ref < FlatListComponent > }
57
- { ...( rest as FlatListProps < T > ) }
61
+ { ...( rest as FlatListProps < T > & NativeViewGestureHandlerProps ) }
58
62
/>
59
63
) ;
60
64
case "FlashList" :
You can’t perform that action at this time.
0 commit comments