Benoît Delmaire

Results 60 comments of Benoît Delmaire

Hi @cani1see, Does it work if you swipe "slowly"? Because the loop dynamic might require a short idle time. Also, note that this plugin isn't your best option if you...

Can one of you guys tell me if the bug occurs with version `3.7.5` of the plugin?

Well, I now need to find out which one of [the PR I recently merged](https://github.com/archriss/react-native-snap-carousel/releases/tag/v3.8.0) is responsible for that. #443 is a strong candidate IMO. If someone has the time...

@vittau Have you given a try to version `4.0.0-beta.4`? We're now relying on `FlatList`'s `initialScrollIndex`, which should help with large datasets.

@thekevinbrown I never had to do it, but I just remembered this old article: https://hackernoon.com/how-to-animate-the-items-of-a-react-native-flatlist-32c8cbf7ea3d The exact same principles can be applied. However, all the website's code sections have been...

@thekevinbrown Definitely feel free to push a PR for that; you'd make a lot of users happy 👍

Hi @marcmo, Prop `lockScrollWhileSnapping` should help with that. Also, make sure to test [in a production environment](https://github.com/archriss/react-native-snap-carousel/#important-note-regarding-android). To provide a bit more context about why this is not an easy...

@CodeLuca Sure, but don't get your hopes too high for now ;-) Unless the Facebook team implement a proper `snapToInterval` on Android and make the `ScrollView` component behave properly on...

@har2008preet ⚠️ I strongly advise against that because you're basically rendering thrice your data set. Meaning if you have 10 items in your `data` prop, you're now rendering 30 items...

@AAAstorga Well, the logic is completely different and we're now leaving this to the native scroll instead of trying to compensate for it with JS hacks. That's definitely a tradeoff....