Skip to content

Infinite Scroll - allow passing through or combining onScroll events #143

@alexpchin

Description

@alexpchin

Feature request

An infinite scroll example.

Current behavior

I have a Tab.FlatList with an infinite load. I was using an onMomentumScrollBegin with FlatList to throttle a call to onEndReached. However, now onMomentumScrollBegin doesn't fire as we're using react-native-reanimated.

If I create a scrollHandler with:

const scrollHandler = useAnimatedScrollHandler({
  onBeginDrag: (e) => {
    console.log('onBeginDrag');
  },
  onEndDrag: (e) => {
    console.log('onEndDrag');
  },
  onMomentumScrollBegin: (e) => {
    console.log('onMomentumScrollBegin');
  },
  onMomentumScrollEnd: (e) => {
    console.log('onMomentumScrollEnd');
  },
});

And pass to:

<Tabs.FlatList
  onScroll={scrollHandler}
  .
  .

I don't believe this will not be called as onScroll is created in the library.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions