react-native-flippable
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

React Native Flippable

A npm react-native package for making any element flippable using gestures.

The flippable content can be any react-native element. The flip can be trigger by velocity, drag or tap.

The size of the flippable content is determined by the size of the first child.

Installation

npm install react-native-flippable --save

Usage

import Flippable from 'react-native-flippable'

...

<Flippable>
  <View>
    <Text>Front</Text>
  </View>
  <View>
    <Text>Back</Text>
  </View>
</Flippable>

Props

children

  • required
  • type: React.ReactNode

The children to be flipped. The first child will be the front, the second child will be the back.

flipOnTap

  • optional
  • type: boolean

If the card should be flipped if the user taps on it.

API

flipLeft

  • optional
  • type: () => void

Programmatically trigger a flip to the left.

flipRight

  • optional
  • type: () => void

Programmatically trigger a flip to the right.

Package Sidebar

Install

npm i react-native-flippable

Weekly Downloads

2

Version

0.1.2

License

MIT

Unpacked Size

7.04 kB

Total Files

5

Last publish

Collaborators

  • jakobunn