* Add an intermediate List component * Fix type * Add onScrolledDownChange * Port pager to use onScrolledDownChange * Fix on mobile * Don't pass down onScroll (replacement TBD) * Remove resetMainScroll * Replace onMainScroll with MainScrollProvider * Hook ScrollProvider to pager * Fix the remaining special case * Optimize a bit * Enforce that onScroll cannot be passed * Keep value updated even if no handler * Also memo it
9 lines
274 B
JavaScript
9 lines
274 B
JavaScript
import React from 'react'
|
|
import {View} from 'react-native'
|
|
import Animated from 'react-native-reanimated'
|
|
|
|
export const FlatList_INTERNAL = Animated.FlatList
|
|
export const ScrollView = Animated.ScrollView
|
|
export function CenteredView(props) {
|
|
return <View {...props} />
|
|
}
|