61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
import React from 'react'
|
|
import { StyleSheet, Text, View } from 'react-native'
|
|
import Swiper from '../swiper.dist'
|
|
|
|
const styles = StyleSheet.create({
|
|
wrapper: {
|
|
},
|
|
|
|
slide1: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#9DD6EB'
|
|
},
|
|
|
|
slide2: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#97CAE5'
|
|
},
|
|
|
|
slide3: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#92BBD9'
|
|
},
|
|
|
|
text: {
|
|
color: '#fff',
|
|
fontSize: 30,
|
|
fontWeight: 'bold'
|
|
}
|
|
})
|
|
|
|
export default class BasicSample extends React.Component {
|
|
_onMomentumScrollEnd(e, state, context) {
|
|
// you can get `state` and `this`(ref to swiper's context) from params
|
|
console.log(state, context.state)
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Swiper style={styles.wrapper}
|
|
onMomentumScrollEnd={this._onMomentumScrollEnd}
|
|
showsButtons={true}>
|
|
<View style={styles.slide1}>
|
|
<Text style={styles.text}>Hello Swiper</Text>
|
|
</View>
|
|
<View style={styles.slide2}>
|
|
<Text style={styles.text}>Beautiful</Text>
|
|
</View>
|
|
<View style={styles.slide3}>
|
|
<Text style={styles.text}>And simple</Text>
|
|
</View>
|
|
</Swiper>
|
|
)
|
|
}
|
|
}
|