React native implements the monitoring gesture to pull up and down. The detailed core code is as follows: Code: import {PanResponder} from 'react-native'; var Dimensions = require('Dimensions'); const deviceHeight = Dimensions.get("window").height; const deviceWidth = Dimensions.get("window").width; class TaskfinishedPage extends Component { constructor(props) { super(props); console.disableYellowBox = true; this.state = { silderMargin: deviceHeight-230, }; this.lastY1 = this.state.silderMargin; } componentWillMount() { this._panResponder = PanResponder.create({ onStartShouldSetPanResponder:(evt, gestureState) => { return true; }, onMoveShouldSetPanResponder: (evt, gestureState) => { return true; }, onPanResponderGrant: (evt, gestureState) => { this._highlight(); }, onPanResponderMove: (evt, gestureState) => { console.log(`gestureState.dx : ${gestureState.dx} gestureState.dy : ${gestureState.dy}`); if (50 < this.lastY1 + gestureState.dy && this.lastY1 + gestureState.dy < deviceHeight - 230) { this.setState({ // marginLeft1: this.lastX1 + gestureState.dx, silderMargin: this.lastY1 + gestureState.dy, }); } }, onPanResponderRelease: (evt, gestureState) => { this._unhighlight(); this.lastY1 = this.state.silderMargin; }, onPanResponderTerminate: (evt, gestureState) => { }, }); } //These two methods are triggered when the hand touches and leaves; _unhighlight(){ this.setState({ sliderBackgroundcolor: 'transparent', }); } _highlight(){ this.setState({ sliderBackgroundcolor: 'transparent', }); } render() { return ( <Container}> <Header> <Left> <Button transparent onPress={() => { NavigationUtil.resetGoBack(this.props.navigation); }}> <Icon name='arrow-back' style={{color:'#000'}}/> </Button> </Left> <Body> <Text style={{color:'#000'}}>Finshed mission details</Text> </Body> <Right /> </Header> <View style={{ flex: 1 }}> <View style={ [styles.panelView, { backgroundColor: this.state.sliderBackgroundcolor, marginTop: this.state.silderMargin, zIndex:100 } ]} {...this._panResponder.panHandlers} > </View> </View> </Container> ); } const styles = { panelView: { width: deviceWidth-20, height: 410, marginLeft:10, marginRight:10, borderRadius:6, } } export default TaskfinishedPage; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL FAQ series: When to use temporary tables
>>: How to configure nginx to limit the access frequency of the same IP
Process 1: with return value: drop procedure if e...
Recently, I solved the problem of Docker and the ...
BMP is an image file format that is independent o...
How to check if the Docker container time zone is...
Dockerfile is a text file that contains instructi...
For work needs, I found a lot of information on t...
1. To optimize the query, try to avoid full table...
MySQL 5.7.9 version sql_mode=only_full_group_by i...
The principle is to first write a div with a butt...
This article shares the simple process of install...
First time writing. Allow me to introduce myself....
Table of contents Audio transcoding tools princip...
Table of contents 1 Introduction to the new opera...
This article introduces Online preview and downlo...
What you will create In this new tutorial, we'...