react-native-swipe-up-down-fix

1.0.8 • Public • Published

React Native Swipe Up Down

npm version

NPM

This module support iOS & Android

Demo

When hidden component

Getting started

$ npm install react-native-swipe-up-down-fix --save

  • OR

$ yarn add react-native-swipe-up-down-fix

Usage

import SwipeUpDown from 'react-native-swipe-up-down';
 
// TODO: What to do with the module?
<SwipeUpDown
    itemMini={<ItemMini />} // Pass props component when collapsed
    itemFull={<ItemFull />} // Pass props component when show full
    onShowMini={() => console.log('mini')}
    onShowFull={() => console.log('full')}
    onMoveDown={() => console.log('down')}
    onMoveUp={() => console.log('up')}
    disablePressToShow={false} // Press item mini to show full
    style={{ backgroundColor: 'green' }} // style for swipe
/>

More Props

Note

If you want hidden component just don't pass props itemMini. It's will hidden. And then you can use hasRef to show it when you want.

hasRef

 hasRef={ref => (this.swipeUpDownRef = ref)} 
 // This ref can help you show component when hidden component
 <Text onPress={() => this.swipeUpDownRef.showFull()}>Show</Text>

animation

animation="easeInEaseOut" 

Optional

  • 'linear'
  • 'spring'
  • 'easeInEaseOut'
  • 'none'

swipeHeight

swipeHeight={100} // Default 60

License

This module is MIT licensed


Package Sidebar

Install

npm i react-native-swipe-up-down-fix

Weekly Downloads

1

Version

1.0.8

License

MIT

Unpacked Size

1.84 MB

Total Files

18

Last publish

Collaborators

  • shadowminhja