A dead simple zoomable-swiper made popular by the Kardashians' apps.
npm install react-native-switcher --save
var Switcher = require('react-native-switcher');
var App = React.createClass({
render() {
return (
<Switcher>
<View style={{flex: 1, backgroundColor: 'green'}} />
<View style={{flex: 1, backgroundColor: 'orange'}} />
<View style={{flex: 1, backgroundColor: 'red'}} />
</Switcher>
)
}
})