0.0.2 • Published 8 years ago

react-native-iloading v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

react-native-iloading

install

npm install react-native-iloading

usage

import Loading from "react-native-iloading";

class App extends React.Component {

    componentDidMount() {
        const loading = new Loading();
        loading.show();

        setTimeout(() => {
            loading.hide();
        },3000);
    }

    render() {
        return (
            <View>
            </View>
        )
    }
}