React native ScrollView pull down refresh effect

React native ScrollView pull down refresh effect

This article shares the specific code of the pull-down refresh effect of react native ScrollView for your reference. The specific content is as follows

The refreshControl property of ScrollView is used for pull-down refresh and can only be used for vertical views, that is, horizontal cannot be true.

1. Create a custom CKRefresh.js refresh component

import React,{Component} from 'react';
import {
    View,
    Text,
    StyleSheet,
    ScrollView,
    RefreshControl,
    Dimensions
} from 'react-native';

const screenW=Dimensions.get('window').width;

export default class CKRefresh extends Component{
    constructor(){
        super();
        this.state={
            rowDataArr:Array.from(new Array(30)).map((value,index)=>({
                title:'Initialize data'+index
            })),
            //Whether to display loading
            isRefreshing:false,
            loaded:0
        }
    }

    render(){
        const rowsArr=this.state.rowDataArr.map((row,index)=>(<Row data={row} key={index}/>))
        return(
            <ScrollView
                refreshControl={
                    <RefreshControl
                        refreshing={this.state.isRefreshing}
                        onRefresh={()=>this._onRefresh()}
                        colors={['red','green','blue']}
                        title="Loading..."
                    />
                }
            >
                {rowsArr}
            </ScrollView>
        )
    }

    _onRefresh(){
        //1. Display indicator this.setState({
            isRefreshing:true
        });
        //2. Simulate loading data setTimeout(()=>{
            let newDataArr=Array.from(new Array(5)).map((value,index)=>({
                title:'I am the data pulled down'+(this.state.loaded+index)
            })).concat(this.state.rowDataArr);
            //Update state machine this.setState({
                rowDataArr:newDataArr,
                isRefreshing:false,
                loaded:this.state.loaded+5
            });
        },2000);
    }
}

class Row extends Component {
    static defaultProps = {
        data:{}
    };
    render(){
        return(
            <View style={{
                width:screenW,
                height:40,
                borderBottomWidth:1,
                borderBottomColor:'red',
                justifyContent:'center'
            }}>
                <Text>{this.props.data.title}</Text>
            </View>
        )
    }
}

const styles = StyleSheet.create({

})

2. Reference in App.js

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow strict-local
 */

import React from 'react';
import {
  SafeAreaView,
  StyleSheet,
  ScrollView,
  View,
  Text,
  StatusBar,
} from 'react-native';

import {
  Header,
  LearnMoreLinks,
  Colors,
  DebugInstructions,
  ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';

import CKRefresh from './components/CKRefresh';
const App: () => React$Node = () => {

  return (
    <>
      <StatusBar barStyle="dark-content" />
      <SafeAreaView style={styles.mainViewStyle}>
      <CKRefresh/>
      </SafeAreaView>
    </>
  );
};


const styles = StyleSheet.create({
  mainViewStyle:{
      flex:1,
      backgroundColor:'#fff',
  }
});



export default App;

3. The results are as shown in the figure

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:
  • React Native code example based on FlatList pull-down refresh pull-up load
  • React native ListView adds top pull-down refresh and bottom click refresh examples
  • React Native custom pull-down refresh pull-up loaded list example
  • RefreshContorl pull-down refresh usage in React Native
  • React-native ListView pull down to refresh and pull up to load implementation code
  • React implements native pull-down refresh

<<:  How to use Gitlab-ci to continuously deploy to remote machines (detailed tutorial)

>>:  Solve the problem that the MySQL database crashes unexpectedly, causing the table data file to be damaged and unable to start

Recommend

URL representation in HTML web pages

In HTML, common URLs are represented in a variety ...

Install MySQL in Ubuntu 18.04 (Graphical Tutorial)

Tip: The following operations are all performed u...

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...

How to bind domain name to nginx service

Configure multiple servers in nginx.conf: When pr...

HTML table markup tutorial (1): Creating a table

<br />This is a series of tutorials provided...

Implementation of Vue top tags browsing history

Table of contents nonsense Functions implemented ...

Two ways to prohibit clearing the input text input cache in html

Most browsers will cache input values ​​by defaul...

Abbreviation of HTML DOCTYPE

If your DOCTYPE is as follows: Copy code The code ...

uniapp Sample code for implementing global sharing of WeChat mini-programs

Table of contents Create a global shared content ...

A brief discussion on the definition and precautions of H tags

Judging from the results, there is no fixed patte...

Let's talk in detail about how the NodeJS process exits

Table of contents Preface Active withdrawal Excep...

Manjaro installation CUDA implementation tutorial analysis

At the end of last year, I replaced the opensuse ...