UNPKG
@huunguyen312/flash-list
Version:
latest (1.4.3)
1.4.3
FlashList is a more performant FlatList replacement
shopify.github.io/flash-list/
Shopify/flash-list
@huunguyen312/flash-list
/
src
/
AnimatedFlashList.ts
12 lines
(8 loc)
•
289 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Animated
}
from
"react-native"
;
import
FlashList
from
"./FlashList"
;
import
{
FlashListProps
}
from
"./FlashListProps"
;
const
AnimatedFlashList
=
Animated
.
createAnimatedComponent
<
React
.
ComponentType
<
FlashListProps
<
any
>>>(
FlashList
);
export
default
AnimatedFlashList
;