New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

github.com/rishabhbhatia/react-native-swipeview

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/rishabhbhatia/react-native-swipeview

  • v1.0.2
  • Source
  • Go
  • Socket score

Version published
Created
Source

react-native-swipeview

React Native SwipeView

Todo-list app built with SwipeView (Watch it on YouTube)

alt text

Getting Started

Installation

$ npm i react-native-swipeview --save

Basic Usage

import React, {Component} from 'react';
import { StyleSheet, Text, View } from 'react-native';

import SwipeView from 'react-native-swipeview';

export default class App extends Component {

  render() {

    return (
      <View style={styles.container}>
        <SwipeView
          renderVisibleContent={() => <Text style={styles.text}>SwipeMe</Text>}
        />
      </View>
    );
  };
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  text: {
    backgroundColor: 'whitesmoke',
    padding: 20,
  }
});

alt text

Properties

Basic
PropTypeDescriptionDefault
leftOpenValuenumberTranslateX: How much view opens from the left when swiping left-to-right (positive number).0
rightOpenValuenumberTranslateX: How much view opens from the right when swiping right-to-left (negative number).0
swipeDurationnumberDuration of the slide out swipe animation.250
swipeToOpenPercentnumberWhat % of the left/right openValue does the user need to swipe past to trigger onSwipedLeft/onSwipedRight actions.35
disableSwipeToLeftboolDisable ability to swipe view to left.false
disableSwipeToRightboolDisable ability to swipe view to right.false
onSwipedLeftfuncCalled when left swipe is compelted.-
onSwipedRightfuncCalled when right swipe is compelted.-
previewSwipeDemoboolShould the view do a slide out preview to show that it is swipe-able.false
previewDurationnumberDuration of the slide out preview animation.300
previewOpenValuenumberTranslateX value for the slide out preview animation.-60
previewOpenDelaynumberDelay before starting preview animation.350
previewCloseDelaynumberDelay before closing preview animation.300
swipingLeftboolShould swiping initialize with right-to-left. This should be useful for swipe previews ex: +ve previewOpenValue swipingLeft: false & -ve previewOpenValue swipingLeft: true.true
recalculateHiddenLayoutboolEnable hidden row onLayout calculations to run always.false
directionalDistanceChangeThresholdnumberChange the sensitivity of the row.2
Views
PropTypeDescriptionDefault
renderVisibleContentfuncMain Content view.-
renderLeftViewfuncLeft view to render behind the right view.-
renderRightViewfuncRight view to render behind the item view.-

Contribution

Credits

Inspiration: react-native-swipe-list-view (Github)

Questions

Feel free to Contact me or Create an issue

License

Released under the Mit License

FAQs

Package last updated on 06 Sep 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc