React Native Reanimated Carousel ScrollTo 事件不起作用
P粉232793765
P粉232793765 2023-12-24 15:44:11
0
1
608

我正在使用反應本機復活輪播。在輪播中,我正在渲染圖像,當我點擊圖像時,它不會滾動到該圖像。這是程式碼:

<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粉232793765
P粉232793765

全部回覆(1)
P粉748218846

如果您仔細查看文檔,您必須在scollTo 中傳遞一個帶有索引的物件:https://github.com/dohooo/react-native-reanimated-carousel/blob /main/docs/props。 md#ref

像這樣:

scrollTo({index: 1})

#
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板