react-native-iloading
v0.0.2
Published
a loading component for react native
Downloads
3
Readme
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>
)
}
}