
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
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
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.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.