Socket
Book a DemoInstallSign in
Socket

react-native-image-carousel-slider

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-image-carousel-slider

This package is made to make it easier for you to display the image sliders

Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

Node.js



version 1.0.9

BUILD SETUP


## Installation

npm install react-native-image-carousel-slider --save



USAGE


import CarouselDisplay from react-native-image-carousel-slider
const image = ['https://www.bradykesner.com/wp-content/uploads/2016/11/clingmans-dome-sunset-smoky-mountain-national-park-1030x687.jpg',
'https://www.nps.gov/blri/learn/nature/images/Bear-Trap-Gap-MP-428-robert-Stevens-web.jpg?maxwidth=1200&maxheight=1200&autorotate=false',
'https://static.rootsrated.com/image/upload/s--U0wjV1dP--/t_rr_large_traditional/kzw1j2a9jcad36x6ytof.jpg'
]
class App extends Component {
    state={
        active:0
    }
     handleMovements = ({nativeEvent}) => {
    const slide = Math.ceil(
      nativeEvent.contentOffset.x / nativeEvent.layoutMeasurement.width,
    );
    if (slide !== this.state.active) {
      this.setState({
        active: slide,
      });
    }
  };
    render(){
        return(
            <CarouselDisplay 
            screen={'DisplayFullImages'} 
          fixedData={carDetails[1].image}
          screenNavigation={this.props.navigation}
          active={this.state.active}
          handleMovements={this.handleMovements}
        />

       
        )
    }
}
Girl in a jacket

Current API(Property)

PropertyTypeDescription
screenPropTypes.string(optional)Screen Navigation and will passing property 'detailImage' as array
fixedDataPropTypes.array(required) Array Of Image
screenNavigationPropTypes.function(optional) navigation function
activePropTypes.numberdisplay active image that choosed
handleMovementsPropTypes.objectNative Event

Project Documentation

  • Author Account
Arwy Syahputra Siregar
github.com/arwysyah


<p > Copyright ©</p> <p style="color:green;">by Arwy Syahputra Siregar</p>


FAQs

Package last updated on 08 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts