1.1.2 • Published 3 months ago

react-native-basic-carousel v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

react-native-basic-carousel

This is a basic React Native carousel which features a pagination.

alt-tag

Installation

  1. Download package with npm or yarn
npm install react-native-basic-carousel
yarn add react-native-basic-carousel
  1. Install pods
cd ios && pod install
  1. Rebuild the project
npx react-native run-android
npx react-native run-ios

Example

import { Carousel } from 'react-native-basic-carousel'

<Carousel 
  data={data} 
  renderItem={({item, index}) => <View>{...}</View>}
  itemWidth={width}
  onSnapItem={(item) => console.log(item)}
  pagination
  autoplay
/>

To create your own pagination, do this:

<Carousel 
  data={data} 
  renderItem={({item, index}) => <View>{...}</View>}
  itemWidth={width}
  customPagination={({ activeIndex }) => <View><Text>{activeIndex}<Text><View>}
/>

Props

PropsDescriptionTypeDefault
dataArray of items to loop onArrayRequired
renderItemTakes an item from data and renders it into the list. The function receives one argument {item, index} ArrayFunctionRequired
autoplayWhen true, the carousel slides automaticallyBooleanfalse
autoplayDelayWhen true, the carousel slides automaticallyNumber2500
itemWidthWidth of carousel's item and carousel itselfNumberRequired
onSnapToItemCallback fired after snapping to an itemFunctionundefined
bouncesWhen true, the carousel bounces when it reaches the end (only available on ios)Booleanfalse
paginationWhen true, pagination is displayed under the carousel itemBooleanfalse
paginationColorTakes a color code for the pagination dotsStringundefined
paginationTypeDisplay pagination dots in either cirlce mode or default (Rectangle)String (default, circle)default
paginationPositionPositions pagination to the top of the carousel or bottomString(Top, bottom)bottom
paginationBackgroundColorBackground color for pagination wrapperString(Top, bottom)bottom
getCurrentIndexcallback to get the current displayed item indexFunctionundefined
customPaginationAllows for custom made pagination to be displauedFunctionundefined

Inherited props

The component is built on top of the FlatList component, meaning it inherits from FlatList, VirtualizedList, and ScrollView.

You can use almost all props from this three components, but some of them can't be overriden because it would mess with our implementation's logic.

Here are a few useful props regarding carousel's style and "feeling": scrollEnabled (if you want to disable user scrolling while still being able to use Carousel's methods), showsHorizontalScrollIndicator, overScrollMode (android), decelerationRate (ios), scrollEventThrottle (ios).

And here are some useful ones for performance optimizations and rendering: initialNumToRender, maxToRenderPerBatch, windowSize, updateCellsBatchingPeriod, extraData, removeClippedSubviews (the latter may have bugs, as stated in RN's doc). The first three are already implemented with default parameters, but you can override them if they don't suit your needs.

1.1.2

3 months ago

1.1.1

8 months ago

1.1.0

9 months ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago