Flip Card Animation using Gesture For React Native

react-native-gesture-flip-card

flip card animation using gesture for React Native

Installation

  npm install --save react-native-gesture-flip-card

Simple Preview

App preview App preview

Minimal Usage

import GestureFlipView from 'react-native-gesture-flip-card';
<View style={styles.container}>
  <GestureFlipView width={300} height={500}>
    {renderBack()}
    {renderFront()}
    </GestureFlipView>
</View>

const renderFront = () => {
  return (
    <View style={styles.frontStyle}>
      <Text style={{fontSize: 25, color: '#fff'}}>{'Front'}</Text>
    </View>
  );
};

const renderBack = () => {
  return (
    <View style={styles.backStyle}>
      <Text style={{fontSize: 25, color: '#fff'}}>{'Back'}</Text>
    </View>
  );
};

Detail

Props

Props type description required default
width number width of view true
height number height of view true
onFlipEnd function callback on end of flip
perspective number perspective of the view -1000

Method

name description args
doFlip flip the card number: 1 or -1
<GestureFlipView ref={(ref) => this.flipView = ref}
  width={300} height={500}>
    {renderBack()}
    {renderFront()}
</GestureFlipView>
this.flipView.doFlip(1)  // counterclockwise
this.flipView.doFlip(-1) // clockwise

Download Details:

Author: JungHsuan

Source Code: https://github.com/JungHsuan/react-native-gesture-flip-card

#react-native #react #mobile-apps

Flip Card Animation using Gesture For React Native
5.90 GEEK