在我的应用程序中,我使用 react-native-swiper 组件。最初它工作正常,但最近它有一个奇怪的行为。它有 5 个窗口,它像这样滑动。5-1-2-3-4-5-1
它滑动了 7 次,项目是这样的。从第一个开始。我可以向左滑动一次。向右滑动 5 次。就这样。
我该如何解决这个问题?我使用版本 1.5.6
import React from "react";
import { Dimensions } from "react-native";
import Swiper from "react-native-swiper";
import SwiperWindow from "../SwiperWindow/SwiperWindow";
const height = Dimensions.get("window").height * 0.3;
const swiperContainer = props => (
<Swiper height={height}
showsButtons={true}
showsPagination={false}>
{props.featuredWorkouts.map(featuredWorkout => {
return(
<SwiperWindow
key={featuredWorkout.featuredWorkoutId}
imageSource={featuredWorkout.postImage}
workoutTitle={featuredWorkout.title}
/>)
})}
</Swiper>
);
export default swiperContainer;