react-native-infinite-looping-scroll icon indicating copy to clipboard operation
react-native-infinite-looping-scroll copied to clipboard

Adding Horizontal prop to InfiniteScroll not working

Open akshaylazarus opened this issue 4 years ago • 0 comments
trafficstars

Not able to scroll horizontally when horizontal is set to true. <InfiniteScroll data={[ { key: "a1" }, { key: "a2" }, { key: "a3" }, { key: "a4" }, { key: "a5" }, { key: "a6" }, { key: "a7" }, ]} renderItem={({ item, index }) => ( <View style={{ width: 50 }}> <Text>{item.key}</Text> </View> )} keyExtractor={(item, index) => item.key + index} horizontal showsHorizontalScrollIndicator={false} legacyImplementation={false} />

akshaylazarus avatar Feb 18 '21 18:02 akshaylazarus