Package Exports
- react-native-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-loader
A collection of animated spinners for react native using ReactART.

Usage
Installation
Install it via npm:
npm i -S react-native-loaderAndroid
For Android, it works out of the box.
iOS
For iOS, add ART.xcodeproj from node_modules/react-native/Libraries/ART to your Libraries then link libART.a.
How to use
import { Bubbles, DoubleBounce, Bars, Pulse } from 'react-native-loader';
// ...
<View>
<Bubbles size={10} color="#FFF" />
<Bars size={10} color="#FDAAFF" />
<Pulse size={10} color="#52AB42" />
<DoubleBounce size={10} color="#1CAFF6" />
</View>