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-multiview

v1.0.3

Published

This is a component that contains more than one common layer,Android and IOS are also available.

Downloads

39

Readme

react-native-multiview

npm

This is a component that contains more than one common layer,Android and IOS are also available.

multiview preview

Installation

npm install -save react-native-multiview

Usage example

import {MultiView} from "react-native-multiview";
import {PageStatus} from "react-native-multiview";

 componentDidMount() {
        let that = this;
        setTimeout(() => {
            that.setState({
                status: PageStatus.empty,
            });
            setTimeout(() => {
                that.setState({
                    status: PageStatus.content,
                });
                setTimeout(() => {
                    that.setState({
                        status: PageStatus.loading,
                    });
                    setTimeout(() => {
                        that.setState({
                            status: PageStatus.error,
                        })
                    }, 2000);
                }, 2000);
            }, 2000);
        }, 2000);
    }

    render() {

        let that = this;
        return (
            <MultiView status={that.state.status} emptyBgColor="white" errorBgColor="white" emptyText="你还没有添加商品呦"
                       errorText="网络错误">
                <View style={styles.container}>
                    <MoneyFormatText text="1200000" bigTextFontSize={30} smallTextFontSize={20} hasRMB={true} RMB="$"/>
                    <MoneyFormatText text="¥1200000" bigTextFontSize={30} smallTextFontSize={20} hasRMB={true}/>
                    <MoneyFormatText text="¥1200000" bigTextFontSize={30} smallTextFontSize={12} hasRMB={false}
                                     RMB="$"/>
                    <MoneyFormatText text="$1200000" bigTextFontSize={30} smallTextFontSize={15} hasRMB={true} RMB="¥"
                                     textColor="red"/>
                    <MoneyFormatText text="¥1200000" bigTextFontSize={30} smallTextFontSize={20} hasRMB={true} RMB="¥"
                                     textColor="black"/>
                    <MoneyFormatText text="$1200000" bigTextFontSize={30} smallTextFontSize={25} hasRMB={true} RMB="¥"/>
                </View>
            </MultiView>
        );
    }

Props

Prop | Type | Optional | Default | Description ------------------------| ------ | -------- |----------------| ----------- status                     | string | Yes     |PageStatus.content| status determines the current display of that page,which includes{PageStatus.error,PageStatus.empty,PageStatus.content,PageStatus.init,PageStatus.loading}five status.
onEmptyPress               | func   | Yes     |                   | Click event of empty page button onErrorPress | func | Yes | | Click event of error page button emptyImgSource | source | Yes | | Image of empty page show errorImgSource | source | Yes | | Image of error page show emptyText | string | Yes | "" | Text of empty page desc errorText | string | Yes | "" | Text of error page desc emptyBtnText | string | Yes | "" | Text of empty page button,Display when it is not empty,Default does not display errorBtnText | string | Yes | "" | Text of error page button,Display when it is not empty,Default does not display emptyTextStyle | style | Yes | | The style of empty page text errorTextStyle | style | Yes | | The style of error page text emptyButtonStyle | style | Yes | | The style of empty page button errorButtonStyle | style | Yes | | The style of error page button emptyBgColor | color | Yes | | The backgroundcolor of empty page errorBgColor | color | Yes | | The backgroundcolor of error page initHint | string | Yes | | Hint of init page ActivityIndicator loadingHint | string | Yes | | Hint of loading page ActivityIndicator initHintStyle | style | Yes | | The style of init page initHint loadingHintStyle | style | Yes | | The style of loading page loadingHint initIndicatorColor | color | Yes | | The color of init page ActivityIndicator loadingIndicatorColor | color | Yes | | The color of loading page ActivityIndicator initContainerBgColor | color | Yes | | The backgroundcolor init page ActivityIndicator container initContainerBgColor | color | Yes | | The backgroundcolor loading page ActivityIndicator container

To Do

https://github.com/wslcsok/react-native-multiview/issues