react-native-snap-carousel-tabs

3.7.7 • Public • Published

react-native-snap-carousel-tabs

Swiper component for React Native featuring previews, multiple layouts, parallax images, performant handling of huge numbers of items, and RTL support. Compatible with Android & iOS.

platforms npm npm

github issues github closed issues


🙌 New feature: layouts

Do you want to find out more?

react-native-snap-carousel-tabs default layout react-native-snap-carousel-tabs tinder layout react-native-snap-carousel-tabs stack layout


✨ Do you want an even better plugin? Vote for React Native's feature requests to let the Facebook team know what they need to improve!


⚠️ Before submitting a new issue, make sure to read the guidelines and then to fill out the issue template!


Table of contents

  1. Showcase
  2. Props, methods and getters
  3. Usage
  4. Important note regarding Android
  5. Layouts and custom interpolations
  6. ParallaxImage component
  7. Pagination component
  8. Example
  9. Tips and tricks
  10. Known issues
  11. Roadmap
  12. Credits

Showcase

Archriss' "Ville d'Aix-en-Provence" app

This app is available on Android and iOS. It uses version 3.2.0 of the plugin, with FlatList's implementation and parallax images.

react-native-snap-carousel-tabs archriss aix react-native-snap-carousel-tabs archriss aix

Archriss' showcase app

You can try the app live on Android and iOS. It currently uses version 1.4.0 of the plugin. Be aware that sliders' layouts will break on RTL devices since support was added in version 2.1.0 (see #38).

react-native-snap-carousel-tabs react-native-snap-carousel-tabs react-native-snap-carousel-tabs

Please note that we do not plan on Open-Sourcing the code of our showcase app. Still, we've put together an example for you to play with, and you can find some insight about our map implementation in this comment. The folks at codedaily.io have created a great tutorial about implementing a similar feature. Go check it out!

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. You can find it here.

Usage

This project is a fork of react-native-snap-carousel repo. In addition I just added tabs support.

// Props added
{
  layoutDirection="rtl"
  renderTabs={true}
  underlineStyle={{backgroundColor: 'red'}},
  tabStyle={{backgroundColor: '#FFF'}}
  textStyle={{fontFamily: 'Arial'}}
  tabs={[
      {title: 'First' },
      {title: 'Second' },
      {title: 'Third' },
      {title: 'Fourth' },
  ]}
}
 
$ npm install --save react-native-snap-carousel-tabs
import Carousel from 'react-native-snap-carousel-tabs';
 
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}
            />
        );
    }
}

Important note regarding Android

react-native-snap-carousel-tabs 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.

⚠️ 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".

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.

react-native-snap-carousel-tabs default layout

<Carousel layout={'default'} />

react-native-snap-carousel-tabs stack layout ios react-native-snap-carousel-tabs stack layout android

<Carousel layout={'stack'} layoutCardOffset={`18`} />

react-native-snap-carousel-tabs tinder layout ios react-native-snap-carousel-tabs tinder layout android

<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/
  • ⚠️ You should NOT use stack or tinder layouts if you have a large data set to display. In order to avoid rendering issues, the carousel will use a ScrollView component rather than a FlatList one for those layouts (see prop useScrollView). The tradeof is that you won't benefit from any of FlatList'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 see the dedicated documentation.

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):

react-native-snap-carousel-tabs custom layout react-native-snap-carousel-tabs custom layout react-native-snap-carousel-tabs custom layout

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).

You can find the documentation for this component here.

react-native-snap-carousel-tabs parallax image

Pagination component

Starting with version 2.4.0, a customizable <Pagination /> component has been added. This is how it looks like with its default configuration:

You can find the documentation for this component here.

react-native-snap-carousel-tabs pagination

Example

You can find the following example in the /example folder.

react-native-snap-carousel-tabs

Tips and tricks

All the useful tips and tricks have been gathered here - there is a bunch of them, which makes this section a must-read!

Known issues

Make sure to read about the known issues before opening a new one; you may find something useful.

Roadmap

  • Add more examples
  • Handle different items' width/height
  • Implement different layouts and allow using custom interpolations
  • Implement both FlatList and ScrollView handling
  • Add the ability to provide custom items animation
  • Implement 'loop' mode
  • Improve Android's behavior
  • Add parallax image component
  • Base the plugin on FlatList instead of ScrollView
  • Add alignment option
  • Add pagination component
  • Add vertical implementation
  • Handle device orientation event (see this note)
  • Add RTL support
  • Improve momemtum handling
  • Improve snap on Android
  • Handle passing 1 item only
  • Fix centering

Credits

Written by Benoît Delmaire (bd-arc) and Maxime Bertonnier (Exilz) at Archriss.

Package Sidebar

Install

npm i react-native-snap-carousel-tabs

Weekly Downloads

5

Version

3.7.7

License

BSD-3-Clause

Unpacked Size

278 kB

Total Files

37

Last publish

Collaborators

  • hadimostafapour