Gathering detailed insights and metrics for react-native-flip-card
Gathering detailed insights and metrics for react-native-flip-card
Gathering detailed insights and metrics for react-native-flip-card
Gathering detailed insights and metrics for react-native-flip-card
react-native-card-flip
Card flip animation for React Native
@types/react-native-flip-card
TypeScript definitions for react-native-flip-card
react-native-flip-card-plus
The card component which has a motion of flip for React Native(Android) with gestures
@ivangonzalezg/react-native-flip-card
The card component which has a motion of flip for React Native(iOS/Android)
The card component which has a motion of flip for React Native(iOS/Android)
npm install react-native-flip-card
Typescript
Module System
Node Version
NPM Version
85.8
Supply Chain
98.3
Quality
77.9
Maintenance
100
Vulnerability
100
License
JavaScript (69.69%)
Objective-C (17.89%)
Starlark (7.02%)
Java (5.4%)
Total Downloads
2,722,800
Last Day
208
Last Week
5,048
Last Month
22,483
Last Year
288,814
MIT License
392 Stars
118 Commits
110 Forks
7 Watchers
3 Branches
23 Contributors
Updated on May 25, 2025
Latest Version
3.5.7
Package Id
react-native-flip-card@3.5.7
Unpacked Size
13.81 kB
Size
4.42 kB
File Count
7
NPM Version
8.19.2
Node Version
16.18.0
Published on
Feb 13, 2023
Cumulative downloads
Total Downloads
Last Day
-51.7%
208
Compared to previous day
Last Week
-17.2%
5,048
Compared to previous week
Last Month
-2.1%
22,483
Compared to previous month
Last Year
-24.9%
288,814
Compared to previous year
2
The card component which have motion of flip for React Native(iOS/Android)
npm i react-native-flip-card
import FlipCard from 'react-native-flip-card'
<FlipCard>
{/* Face Side */}
<View style={styles.face}>
<Text>The Face</Text>
</View>
{/* Back Side */}
<View style={styles.back}>
<Text>The Back</Text>
</View>
</FlipCard>
<FlipCard
style={styles.card}
friction={6}
perspective={1000}
flipHorizontal={true}
flipVertical={false}
flip={false}
clickable={true}
onFlipEnd={(isFlipEnd)=>{console.log('isFlipEnd', isFlipEnd)}}
>
{/* Face Side */}
<View style={styles.face}>
<Text>The Face</Text>
</View>
{/* Back Side */}
<View style={styles.back}>
<Text>The Back</Text>
</View>
</FlipCard>
Default: false
If you change default display side, you can set true
to this param. If you change side, you can pass bool
variable dynamically.
Default: true
If you want to disable click a card, you can set false
to this param.
Default: 6
The friction of card animation
Default: 0
The amount of perspective applied to the flip transformation
Default: false
If you set true, a card flip to horizontal.
Default: true
If you set false, a card not flip to vertical. If you set true both flipHorizontal
and flipVertical
, a card flip to diagonal.
vertical | diagnoal |
---|---|
![]() | ![]() |
(isFlipStart) => {}
When a card starts a flip animation, call onFlipEnd
function with param.
(isFlipEnd) => {}
When a card finishes a flip animation, call onFlipEnd
function with param.
Default:false
If you pass true
to alignHeight
param, the card keep height of bigger side.
Default:false
If you pass true
to alignWidth
param, the card keep width of bigger side.
Default:false
If you pass true
to useNativeDriver
param, the card animation will utilize the native driver.
Inspired by react-flipcard
MIT
No vulnerabilities found.
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 10/19 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
86 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More