react-native-progresshud
v0.0.5
Published
react-native progress hud
Downloads
5
Maintainers
Readme
React Native ProgressHUD
ScreenShots
Install
npm install --save react-native-progresshud
Usage
Using the HUD in your app will usually look like this:
import ProgressHUD from 'react-native-progresshud';
class demo extends Component {
render() {
return (
<View style={styles.container}>
...
<ProgressHUD showHUD={true} showLoading ={true} text ='Loading...'/>
</View>
);
}
}