Swipeout buttons Component

Dan Cormier released its first React Native Component for iOS. Swipeout buttons will add some native feeling to your Apps.

react-native-swipeout on GitHub

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

Swipeout buttons

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

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

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