react-native-snap-carousel-reborn
v3.9.3
Published
Swiper/carousel component for React Native with previews, multiple layouts, parallax images, performant handling of huge numbers of items, and RTL support. Compatible with Android & iOS.
Downloads
204
Maintainers
Readme
A fork of react-native-snap-carousel, why? because react-native-reanimated-carousel way to hard to use.
Usage
$ npm install --save react-native-snap-carousel-reborn
If you're using Typescript you should also install type definitions:
$ npm install --save @types/react-native-snap-carousel-reborn
import Carousel from 'react-native-snap-carousel-reborn';
export class MyCarousel extends Component {
_renderItem = ({item, index}) => {
return (
<View style={styles.slide}>
<Text style={styles.title}>{ item.title }</Text>
</View>
);
}
render () {
return (
<Carousel
ref={(c) => { this._carousel = c; }}
data={this.state.entries}
renderItem={this._renderItem}
sliderWidth={sliderWidth}
itemWidth={itemWidth}
/>
);
}
}
Example
Here are simple examples that can be edited in real time in your browser:
- https://snack.expo.io/@vitkor/carousel-simple-example
- https://snack.expo.io/@bd-arc/react-native-snap-carousel-%7C-example-with-custom-interpolations
You can also find a more in-depth (read "complex") one in the /example
folder.
Props, methods and getters
In order to let you to create mighty carousels and to keep up with your requests, we add new features on a regular basis. Consequently, the list of available props has become really huge and deserves a documentation of its own.
:books: Documentation for "Props, methods and getters"
Layouts and custom interpolations
Built-in layouts
In version 3.6.0
, we've added two new layouts on top of the original one: the first one is called 'stack' since it mimics a stack of cards, and the other one is called 'tinder' since it provides a Tinder-like animation.
You can choose between the three of them using the new prop layout
and you can modify the default card offset in the 'stack' and 'tinder' layouts with prop layoutCardOffset
.
<Carousel layout={'default'} />
<Carousel layout={'stack'} layoutCardOffset={`18`} />
<Carousel layout={'tinder'} layoutCardOffset={`9`} />
A few things worth noting:
- As you can see, the effect had to be inverted on Android. This has to do with a really annoying Android-specific bug.
- Even though the new layouts have been created with horizontal carousels in mind, they will also work with vertical ones \o/
- :warning: You should NOT use
stack
ortinder
layouts if you have a large data set to display. In order to avoid rendering issues, the carousel will use aScrollView
component rather than aFlatList
one for those layouts (see propuseScrollView
). The tradeof is that you won't benefit from any ofFlatList
's advanced optimizations. See this issue for workarounds; or you may want to implement your own custom interpolation.
Custom interpolations
On top of the new layouts, we've exposed the logic we used so that users can create their own awesome layouts! If you're interested, take a deep breath and dive into the dedicated documentation.
:books: Documentation for "Custom interpolations"
Here are a few examples of what can easily be achieved (you can explore the source code and try it live in the provided example):
ParallaxImage
component
Version 3.0.0
introduced a <ParallaxImage />
component, an image component aware of carousel's current scroll position and therefore able to display a nice parallax effect (powered by the native driver to ensure top-notch performance).
:books: Documentation for "ParallaxImage
component"
Pagination
component
Starting with version 2.4.0
, a customizable <Pagination />
component has been added. You can see below how it looks like with its default configuration.
:books: Documentation for "Pagination
component"
Tips and tricks
We've gathered together all the useful tips and tricks. There is a bunch of them, which makes this section a must-read!
:books: Documentation for "Tips and tricks"
Known issues
Make sure to read about the known issues before opening a new one; you may find something useful.
:books: Documentation for "Known issues"
Important note regarding Android
Android's debug mode is a mess: timeouts regularly desynchronize and scroll events are fired with some lag, which completely alters the inner logic of the carousel. On Android, you will experience issues with carousel's behavior when JS Dev Mode is enabled, and you might have trouble with unreliable callbacks and loop mode when it isn't. This is unfortunate, but it's rooted in various flaws of ScrollView
/FlatList
's implementation and the miscellaneous workarounds we had to implement to compensate for it.
:warning: Therefore you should always check if the issue you experience also happens in a production environment. This is, sadly, the only way to test the real performance and behavior of the carousel.
For more information, you can read the following notes: "Android performance" and "Unreliable callbacks".
Important note regarding iOS
:warning: When debugging with the iOS simulator, you're only one "Cmd + T" away from toggling "Slow Animations". If carousel's animations seem painfully slow, make sure that you haven't enabled this setting by mistake.
Roadmap
- [ ] Add more examples
- [ ] Base the plugin on a component less buggy than
FlatList
- [X] Implement different layouts and allow using custom interpolations
- [X] Implement both
FlatList
andScrollView
handling - [X] Add the ability to provide custom items animation
- [X] Implement 'loop' mode
- [X] Improve Android's behavior
- [x] Add parallax image component
- [x] Base the plugin on
FlatList
instead ofScrollView
- [x] Add alignment option
- [x] Add pagination component
- [x] Add vertical implementation
- [x] Handle device orientation event (see this note)
- [x] Add RTL support
- [x] Improve momemtum handling
- [x] Improve snap on Android
- [x] Handle passing 1 item only
- [x] Fix centering
Credits
Written by Benoît Delmaire (bd-arc) and Maxime Bertonnier (Exilz) at Meliorence.