npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-refresh-control-enrichment

v0.2.0

Published

原生下拉刷新组件

Downloads

7

Readme

react-native-refresh-control-enrichment

npm version

Native Refresh

Android

IOS

Using npm

npm install react-native-refresh-control-enrichment --save

or using yarn:

yarn add react-native-refresh-control-enrichment

Installation

react-native version >= 0.61.5

After that, we need to install the dependencies to use the project on iOS(you can skip this part, if you are using this on Android) Now run:cd ios && pod install

Using

import ZHRefreshControl, {ZHScrollView} from 'react-native-refresh-control-enrichment';

<ZHScrollView
    style={{flex: 1}}
    refreshControl={
        <ZHRefreshControl
            ref={(r) => this._finishRefresh = r}
            headerHeight={80} // headerHeight
            headerBackgroundColor={'#e6e6e6'} // headerBackgroundColor and headerBackgroundImage, do not combine
            onRefresh={()=>{
                console.log('======== Refreshing ========');
                setTimeout(()=>{
                    // Refreshing End
                    this._finishRefresh.finishRefresh();
                    console.log('======== Refreshing End ========');
                },2000)
            }}
        />
    }
>
    <View style={{flex: 1, height: 1000, backgroundColor: '#dddddd', alignItems: 'center', paddingTop: 300}}>
        <Text style={{color: '#000', fontSize: 16}}>⬇️ down 😊</Text>
    </View>
</ZHScrollView>

Using In FlatList

import {FlatList} from 'react-native';
import ZHRefreshControl, {ZHScrollView} from 'react-native-refresh-control-enrichment';

<FlatList
    data={['#8c4fff', '#f0b1ff', '#908c95', '#effba5', '#2b2cff', '#009c18']}
    renderScrollComponent={() => (
        <ZHScrollView
            style={{flex: 1}}
            refreshControl={
                <ZHRefreshControl
                    ref={(r) => this._finishRefresh = r}
                    headerHeight={80} // headerHeight
                    headerBackgroundColor={'#e6e6e6'} // headerBackgroundColor and headerBackgroundImage, do not combine
                    onRefresh={()=>{
                        console.log('======== Refreshing ========');
                        setTimeout(()=>{
                            // Refreshing End
                            this._finishRefresh.finishRefresh();
                            console.log('======== Refreshing End ========');
                        },2000)
                    }}
                />
            }
        />
    )}
    keyExtractor={(item, key) => key.toString()}
    renderItem={({item, index}) => (
        <View style={{backgroundColor: item, marginHorizontal: 15, height: 100, borderRadius: 20, marginTop: 15}}/>
    )}
/>

Documentation

Props

onRefresh

刷新时触发

| Type | Required | | ---- | -------- | | function | Yes |


refreshState

刷新时状态

| Type | Required | | ---- | -------- | | function | Yes |


loadingView

加载中View

| Type | Default | | ---- | -------- | | element | Yes |


headerHeight

头部高度

| Type | Default | | ---- | -------- | | number | 60 |


centerTop

内容距离顶部高度(一般为状态栏高度)

| Type | Default | | ---- | -------- | | number | 0 |


headerBackgroundColor

头部背景色

| Type | Default | | ---- | -------- | | string | #ffffff |


headerBackgroundImage

头部背景图片

| Type | Required | | ---- | -------- | | url | Yes |


showText

展示刷新状态

| Type | Default | | ---- | -------- | | boolean | Yes |


headerTitleStyle

刷新状态字体样式

| Type | Default | | ---- | -------- | | style | Yes |


showDate

展示刷新时间

| Type | Default | | ---- | -------- | | boolean | Yes |


headerDateStyle

更新时间字体样式

| Type | Default | | ---- | -------- | | style | Yes |


titleArray

自定义提示状态,注:数量需要为四个

| Type | Default | | ---- | -------- | | array | yes |


pullView

下拉 LoadingView

| Type | Default | | ---- | -------- | | element | Yes |


releaseView

释放 LoadingView

| Type | Default | | ---- | -------- | | element | Yes |


successView

成功 LoadingView

| Type | Default | | ---- | -------- | | element | Yes |


Reference library:

Android:

https://github.com/react-native-studio/react-native-SmartRefreshLayout

iOS:

https://github.com/react-native-studio/react-native-MJRefresh