-
-
Notifications
You must be signed in to change notification settings - Fork 351
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Hi,
Is it intended, even if I have autoPlay set to false, that carousel run through all slides after I manually change slide once?
My carousel code:
<Carousel
width={width}
height={200}
loop={false}
mode="parallax"
autoPlay={false}
modeConfig={{
parallaxScrollingScale: 0.96,
parallaxScrollingOffset: 18,
}}
onProgressChange={(_: any, absoluteProgress: number) =>
(progressValue.value = absoluteProgress)
}
data={JSON.parse(JSON.stringify(profileAbilities))}
renderItem={({item}: {item: ProfilePlayerAbility}) => (
<Block key={item.category}>
<ProfileAbilityCategory {...{item}} />
</Block>
)}
/>
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working