react-native-reanimated-carousel
react-native-reanimated-carousel copied to clipboard
Scroll Index to 0 position is not working.
Steps to produce:
1)Try Scrolling to index : 0 from external view. Method ===> ScrollToIndex({index:0)}
Others index positions are scrolling fine. Its just related to 0 index.
It looks well, Can you try with this prop?
<SButton
onPress={() => {
ref.current?.scrollTo({ index: 0, animated: true });
}}
>
scroll to 0
</SButton>
I'll reopen this issue If you have any other questions.