react-native-pager-view icon indicating copy to clipboard operation
react-native-pager-view copied to clipboard

Does not work within a ScrollView, bad performance when rendering multiple list components with real time data

Open nicolinho22 opened this issue 8 months ago • 2 comments

Environment

react-native @ 0.79.1 react-native-pager-view @ 6.7.1

Description

Since @MrRefactor requested a new issue to be created (https://github.com/callstack/react-native-pager-view/issues/784), here it is. Compared to version 7.0.0.rc0, the current implementation performs much worse, especially in the case of a pager with multiple list components that have many rows and real-time data updates within. Also, the ScrollView bug persists, we are still not able to scroll a ScrollView when a Pager is rendered inside of it unless we perform the scroll gesture outside of the pager. I don't understand why support for the ScrollView based implementation was dropped as it performed perfectly well and IMO it should replace the current one. Honestly, based on the many threads and reports about this bug, I feel like this issue is being neglected.

Reproducible Demo

import React from 'react';
import { ScrollView, StyleSheet, View, Text } from 'react-native';
import PagerView from 'react-native-pager-view';

const MyPager = () => {
  return (
    <ScrollView>
      <PagerView style={styles.pagerView} initialPage={0}>
        <View key="1">
          <Text>First page</Text>
        </View>
        <View key="2">
          <Text>Second page</Text>
        </View>
      </PagerView>
    </ScrollView>
  );
};

const styles = StyleSheet.create({
  pagerView: {
    flex: 1,
  },
});

export default MyPager;

nicolinho22 avatar May 01 '25 11:05 nicolinho22

+1

thejoaov avatar May 26 '25 19:05 thejoaov

facing the same issue

onlyargon avatar Jun 09 '25 02:06 onlyargon