X Tutup
The Wayback Machine - https://web.archive.org/web/20201030110051/https://github.com/alcat2008/react-native-loading
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

react-native-loading

A lightweight loading for your React Native app.

Installation

npm install react-native-loading --save

Usage

Using the Loading usually looks like this:

var Loading = require('react-native-loading');

var Demo = React.createClass({
  
  getInitialState() {
    return {
      isLoadingVisible: false
    };
  },
  ...

  render() {
    return (
      <View>
        ...
        <Loading
          isVisible={this.state.isLoadingVisible}
        />
      </View>
    );
  }

License

react-native-loading is available under the MIT license. See the LICENSE file for more info.

About

A lightweight loading for your React Native app.

Resources

License

Packages

No packages published
You can’t perform that action at this time.
X Tutup