Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
react-native-flip-component
Advanced tools
npm install react-native-flip-component --save
Pass a boolean, front component, and back component as props. The boolean will determine if the front or back component should be displayed.
To see the code from this GIF, check out example.js
in the repo on GitHub.
Name | Required? | Description |
---|---|---|
isFlipped | true | Boolean that controls if the view is flipped. |
frontView | true | Component for the front view. |
backView | true | Component for the back view. |
scale | false | Controls if the view zooms in or out while flipping. Defaults to 0.8 |
scaleDuration | false | Controls how quickly the scale changes. Defaults to 100 |
frontPerspective | false | Controls the perception of depth for the front component. Defaults to 1000 |
backPerspective | false | Controls the perception of depth for the back component. Defaults to 1000 |
rotateDuration | false | Controls the duration of the rotation. Defaults to 300 |
containerStyles | false | Styles for the flip-component's container <View> . Defaults to null |
frontStyles | false | Styles for the <Animated.View> that wraps the front component. Defaults to null |
backStyles | false | Styles for the <Animated.View> that wraps the back component. Defaults to null |
import React, { Component } from 'react';
import FlipComponent from 'react-native-flip-component';
import { View, Button, Text } from 'react-native';
class Example extends Component {
constructor(props) {
super(props);
this.state = {
isFlipped: false;
};
}
render() {
<View>
<FlipComponent
isFlipped={this.state.isFlipped}
frontView={
<View>
<Text style={{ textAlign: 'center' }}>
Front Side
</Text>
</View>
}
backView={
<View>
<Text style={{ textAlign: 'center' }}>
Back Side
</Text>
</View>
}
/>
<Button
onPress={() => {
this.setState({ isFlipped: !this.state.isFlipped })
}}
title="Flip"
/>
</View>
}
}
FAQs
Double-sided React component that flips 180 degrees
The npm package react-native-flip-component receives a total of 27 weekly downloads. As such, react-native-flip-component popularity was classified as not popular.
We found that react-native-flip-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.