npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-slider-intro

v2.1.14

Published

A simple and full customizable React Native package which implements a unique slider.

Downloads

526

Readme

npm version build platform runs with Expo Go react-native-slider-intro NPM total downloads license

yarn add react-native-slider-intro

or

npm install react-native-slider-intro --save

iOS

yarn example ios

Android

yarn example android
import React from 'react';
import SliderIntro from 'react-native-slider-intro';

const slides = [
  {
    index: 1,
    title: 'First step',
    text: 'Simple description.',
    link: 'https://pccontroller.rnstudio.hu',
    image: require('./images/step1.png'),
    backgroundColor: '#febe29',
  },
  {
    index: 2,
    title: 'Second step',
    text: 'Simple description for the second step.',
    image: require('./images/step2.png'),
    backgroundColor: '#febe29',
  },
];

const BasicExample = ({ closeExample }: { closeExample: () => void }) => {
  return (
    <SliderIntro data={slides} onDone={closeExample} onSkip={closeExample} />
  );
};

export default BasicExample;

The package includes two render options. Besides the default render when you can pass data as an array of ISliderIntroItem props, you can use a custom render with children and numberOfSlides properties.

| Name | Type | Default value | Description | | ---------------------------- | -------- | ------------------------------------- | -------------------------------------------------------------------------------------------- | | data | array | [] | Default render - array of items. Children will be ignored if data is passed. | | numberOfSlides | array | number | Custom render - if children is passed, data will be ignored. numberOfSlides is required in this case. | | children | ReactNode| null | Custom render - JSX elements to render. | | navigationBarBottom | number | 0 | Custom value of dot navigation container bottom position | | navigationBarHeight | number | 70 | Height of dot navigation container | | animateSlideSpeed | number | 15 | Speed of slider animation | | navContainerMaxSizePercent | number | 0.5 | Percent value of navigation container's width | | dotWidth | number | 12 | The radius of the 'dot' circle of navigation | | fixDotOpacity | number | 0.35 | Each dots opacity which don't have animation | | fixDotBackgroundColor | color| grey | Each dots background which don't have an animation | | animatedDotBackgroundColor | color| white | Each dots background which have an animation | | animateDotSpeed | number | 8 | Speed of dot animation | | animateDotBouncing | number | 2 | The 'bounciness' value of all animations. https://reactnative.dev/docs/animated#spring | | hasReactNavigation | boolean | false | There is a trouble with backButton behaviour when you're using react-navigation. You should use useFocusEffect in this case for reach the expected behaviour. More info: https://reactnavigation.org/docs/custom-android-back-button-handling/#why-not-use-component-lifecycle-methods | | useCustomBackHandlerEffect | function | none | As I mentioned above, sometimes we should rewrite the basic backHandler behaviour. This property will be a custom hook. See the example for more info: React navigation custom hook example| | backHandlerBehaviour | string | activeMinusOne | This prop can controls the backButton behaviour. The value should be activeMinusOne or previous| | skipLabel | string | Skip | Custom label of skip button | | nextLabel | string | Next | Custom label of next button | | doneLabel | string | Done | Custom label of done button | | renderSkipButton | function | Default skip/previous button renderer | Use to supply your own skip/previous button | | renderNextButton | function | Default next button renderer | Use to supply your own next button | | renderDoneButton | function | Default done button renderer | Use to supply your own done button | | onDone | function | none | Behaviour of done button | | onSkip | function | none | Behaviour of skip button | | showLeftButton | boolean | true | Show skip or previous button on the left side | | leftButtonType | string | skip | The button type on the left side should be skip or previous | | columnButtonStyle | boolean | false | Buttons will show up in a column | | showStatusBar | boolean | false | Show status bar on top of screen. You can make your own status bar outside of this component | | statusBarColor | color| #febe29 | Background color of status bar | | renderStatusBar | function | Default status bar renderer | Use to supply your own status bar component | | limitToSlide | number | (Device max width) * 0.35 | Use to change the limit of the slide animation. It is calculated based on the PanResponder's gestureState.dx property. For example, your device's width: 400px, the limit is 400 * 0.35 = 140px, so you need to swipe at least 140px to left or right to reach the next slide in the row.

TouchableOpacity onPress function: I've created a new issue on official react-native repository, because TouchableOpacity, Button and Pressable don't working inside PanResponder with react-navigation NavigationContainer. My solution: Import TouchableWithoutFeedback from react-native-gesture-handler instead of react-native and use onPressIn instead of onPress function then overwrite the renderItem function.

See the contributing guide to learn how to contribute to the repository and the development workflow.

MIT