1.0.6 • Published 26 days ago

react-native-swipe-gesture-handler v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
26 days ago

react-native-swipe-gesture-handler

This is a simple react native geture handler package which will save you tons of hours to detect the gesture handle for swiping on your phone.

How to install

yarn add react-native-swipe-gesture-handler

Import

import { SwipeGesture } from "react-native-swipe-gesture-handler";

Define a handler Function

    const onSwipePerformed = (action) => {
      
      switch(action){
        case 'left':{
          console.log('left Swipe performed'); 
          break;
        }
         case 'right':{ 
          console.log('right Swipe performed');
          break;
        }
         case 'up':{ 
          console.log('up Swipe performed'); 
          break;
        }
         case 'down':{ 
          console.log('down Swipe performed'); 
          break;
        }
         default : {
         console.log('Undeteceted action');
         }
      }
    }

Add Swipte Gesture around your View or other component

    <SwipeGesture  
    onSwipePerformed={onSwipePerformed} 
    >
          <View>
          Your View Component
          </View>

    </SwipeGesture>
1.0.6

26 days ago

1.0.5

26 days ago

1.0.4

26 days ago

1.0.3

26 days ago

1.0.2

26 days ago

1.0.1

26 days ago

1.0.0

26 days ago