React native realizes the monitoring gesture up and down pull effect

React native realizes the monitoring gesture up and down pull effect

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:
  • VSCode builds React Native environment
  • Solve the problem of react-native soft keyboard popping up and blocking the input box
  • Detailed explanation of react-native WebView return processing (non-callback method can be solved)
  • React-native bridge Android native development detailed explanation
  • A brief discussion on React Native Flexbox layout (summary)
  • React Native react-navigation navigation usage details
  • Specific usage of FlatList in ReactNative
  • ReactNative FlatList usage and pitfalls package summary
  • Making a simple game engine with React Native

<<:  MySQL FAQ series: When to use temporary tables

>>:  How to configure nginx to limit the access frequency of the same IP

Recommend

Two ways to write stored procedures in Mysql with and without return values

Process 1: with return value: drop procedure if e...

Docker realizes the connection with the same IP network segment

Recently, I solved the problem of Docker and the ...

Detailed explanation of the benefits of PNG in various network image formats

BMP is an image file format that is independent o...

Docker container time zone adjustment operation

How to check if the Docker container time zone is...

Steps to build a Docker image using Dockerfile

Dockerfile is a text file that contains instructi...

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by i...

Linux CentOS6.5 yum install mysql5.6

This article shares the simple process of install...

A detailed account of the process of climbing a pit of Docker deployment service

First time writing. Allow me to introduce myself....

Play and save WeChat public account recording files (convert amr files to mp3)

Table of contents Audio transcoding tools princip...

Handwriting implementation of new in JS

Table of contents 1 Introduction to the new opera...

Example code for circular hover effect using CSS Transitions

This article introduces Online preview and downlo...