2015-06-01 22:49:05 -04:00
2015-05-27 23:03:57 -04:00
2015-05-27 23:03:57 -04:00
2015-05-27 23:03:57 -04:00
2015-06-01 22:38:22 -04:00

react-native-swipeout

iOS-style swipeout buttons that appear from behind a component swipeout preview

Installation

npm install --save react-native-swipeout

Usage example

note: see example/index.ios.js for more detailed example

var Swipeout = require('react-native-swipeout')

// Buttons
var swipeoutBtns = [
  {
    text: 'Button'
  }
]

// Swipeout component
<Swipeout btns={swipeoutBtns}>
  <View>
    <Text>Swipe me left</Text>
  </View>
</Swipeout>

Props

Prop Type Optional Default Description
autoClose bool Yes false auto close on button press
backgroundColor string Yes '#dbddde'
btns array No [] swipeout buttons
Button props
Prop Type Optional Default Description
backgroundColor string Yes '#b6bec0' background color
color string Yes '#ffffff' text color
component string Yes null pass custom component to button
onPress func Yes null function executed onPress
text string Yes 'Click Me' text
type string Yes 'default' default, primary, secondary

To Do

https://github.com/dancormier/react-native-swipeout/issues

Description
No description provided
Readme MIT 21 MiB
Languages
JavaScript 64.2%
Objective-C 20.5%
Starlark 8.3%
Java 7%