Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 736 Bytes

File metadata and controls

35 lines (23 loc) · 736 Bytes

React Native ProgressHUD

image

image

image

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>

    );
  }
}