0.0.5 • Published 9 years ago

react-native-progresshud v0.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

React Native ProgressHUD

ScreenShots

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>

    );
  }
}