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-swipeview-flat

v1.0.1

Published

SwipeView component compatible with FlatList for React Native.

Downloads

6

Readme

React Native SwipeView Flat

Getting Started

Installation

$ npm i react-native-swipeview-flat --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
          scroll={scrolling => console.log(scrolling)}
          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

| Prop | Type | Description | Default| | :------------ |:---------------:| :---------------:| :-----| | leftOpenValue | number | TranslateX: How much view opens from the left when swiping left-to-right (positive number). | 0 | | rightOpenValue | number | TranslateX: How much view opens from the right when swiping right-to-left (negative number). | 0 | | swipeDuration | number | Duration of the slide out swipe animation. | 250 | | swipeToOpenPercent | number | What % of the left/right openValue does the user need to swipe past to trigger onSwipedLeft/onSwipedRight actions. | 35 | | disableSwipeToLeft | bool | Disable ability to swipe view to left. | false | | disableSwipeToRight | bool | Disable ability to swipe view to right. | false | | onSwipedLeft | func | Called when left swipe is completed. | - | | onSwipedRight | func | Called when right swipe is completed. | - | | previewSwipeDemo | bool | Should the view do a slide out preview to show that it is swipe-able. | false | | previewDuration | number | Duration of the slide out preview animation. | 300 | | previewOpenValue | number | TranslateX value for the slide out preview animation. | -60 | | previewOpenDelay | number | Delay before starting preview animation. | 350 | | previewCloseDelay | number | Delay before closing preview animation. | 300 | | swipingLeft | bool | Should swiping initialize with right-to-left. This should be useful for swipe previews ex: +ve previewOpenValue swipingLeft: false & -ve previewOpenValue swipingLeft: true. | true | | recalculateHiddenLayout | bool | Enable hidden row onLayout calculations to run always. | false | | directionalDistanceChangeThreshold | number | Change the sensitivity of the row. | 2 | | scroll | func | Called when swipe actions starts/ends

Views

| Prop | Type | Description | Default| | :------------ |:---------------:| :---------------:| :-----| | renderVisibleContent | func | Main Content view. | - | | renderLeftView | func | Left view to render behind the right view. | - | | renderRightView | func | Right view to render behind the item view. | - |

Contribution

Credits

Inspirations:

Questions

Create an issue](https://github.com/eugenehp/react-native-swipeview/issues/new)

License

Released under the Mit License