我正在使用反應本機復活輪播。在輪播中,我正在渲染圖像,當我點擊圖像時,它不會滾動到該圖像。這是程式碼:
<Carousel ref={carouselRef} loop width={Dimensions.get("window").width} height={300 / 2} data={carTypes} mode="parallax" defaultIndex={1} style={{ alignSelf: "center",justifyContent: "center", alignContent: "center"}} scrollAnimationDuration={1000} onSnapToItem={(index) => setActiveSlide(index)} renderItem={({ item, index }) => ( <TouchableOpacity **onPress={() => carouselRef.current.scrollTo(index)}** activeOpacity={0.1} style={{ backgroundColor: activeSlide !== index ? carouselActiveSlide(index) : "#3887EF", borderWidth: 1, justifyContent: 'center', transform: [{ rotate: "32deg" }], borderRadius: 32, width: 50 }} />
我嘗試測試其他事件,如.next()
、 .prev()
,它們是否按預期工作,但.scrollTo(index)代码>不起作用。你能告訴我我錯過了什麼嗎?
P粉7482188462023-12-25 10:40:47
如果您仔細查看文檔,您必須在scollTo
中傳遞一個帶有索引的物件:https://github.com/dohooo/react-native-reanimated-carousel/blob /main/docs/props。 md#ref
像這樣:
scrollTo({index: 1})