Reactive Native Expo Mobile App:我正在使用React Native Snap Carousel 使用本教程从我的数据库中弹出图像。
我有一个无限的平面列表,其中包含单个条目作为 React Native Snap Carousels,因此有多个带有多个分页的轮播。
在有多个轮播时,分页索引现在通常随着相同的索引移动,并且所有分页都使用轮播引用。
请让我知道如何映射轮播引用和分页索引,以便我的 FlatList 中的多个轮播正常工作。
我正在使用的代码,供参考:
const isCarousel = React.useRef(null);
const [index, setIndex] = React.useState(0);
const renderItem = ({item}) => {
return(
// Some Card Stuff...
<Carousel
layout="tinder"
layoutCardOffset={9}
ref={isCarousel}
data={photoArray}
renderItem={CarouselCardItem}
sliderWidth={SLIDER_WIDTH}
itemWidth={ITEM_WIDTH}
inactiveSlideShift={0}
onSnapToItem={(index) => setIndex(index)}
useScrollView={true}
/>
<Pagination
dotsLength={photoArray.length}
activeDotIndex={index}
carouselRef={isCarousel}
dotStyle={{
width: 10,
height: 10,
borderRadius: 5,
marginHorizontal: 0,
backgroundColor: 'rgba(0, 0, 0, 0.92)'
}}
inactiveDotStyle={{
backgroundColor: 'rgba(4, 5, 3, 0.92)'
}}
inactiveDotOpacity={0.4}
inactiveDotScale={0.6}
tappableDots={true}
/>
// Some more Stuff....
)
和主要的平面列表:
return (
<FlatList
data={data_data}
renderItem={renderItem}
keyExtractor = {item => `${item.identifier}`}
ListFooterComponent = {Loader}
onEndReached = {loadStuff}
onRefresh = {() => refreshData()}
refreshing = {isRefreshing}
/>
)