# react-native-sk-loader

> Component that wrap ProgressBarAndroid in android and ActivityIndicatorIOS in iOS, is used to indicate that the app is loading

Latest version **1.0.2** (published 2016-03-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-sk-loader
pnpm add react-native-sk-loader
yarn add react-native-sk-loader
bun add react-native-sk-loader
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2016-03-09 |
| First published | 2016-03-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | shigebeyond |
| Maintainers | shigebeyond |
| Keywords | react, native, loader, ProgressBarAndroid, ActivityIndicatorIOS |

## Links

- npm: https://www.npmjs.com/package/react-native-sk-loader
- Repository: https://github.com/shigebeyond/react-native-sk-loader
- Homepage: https://github.com/shigebeyond/react-native-sk-loader#readme
- Issues: https://github.com/shigebeyond/react-native-sk-loader/issues
- npm.io page: https://npm.io/package/react-native-sk-loader

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2016-03-09
- 1.0.1 — 2016-03-09
- 1.0.0 — 2016-03-08

## README

# react-native-sk-loader

##What is it

react-native-sk-loader is a component that wrap ProgressBarAndroid in android and ActivityIndicatorIOS in iOS, is used to indicate that the app is loading

It’s very simple, I write it just for loading compatibility in different platform.

##How to use it

1. `npm install react-native-sk-loader@latest --save`

2. Write this in index.ios.js / index.android.js
```javascript
'use strict';

var React = require('react-native');
var {
  AppRegistry,
  View,
  StyleSheet
} = React;
var SKLoader = require('react-native-sk-loader');

var test = React.createClass({
  render: function(){
    return (
      <SKLoader />
    )
  }
});

```

3. If you want to know more, just see the source code, is very simple

---
_Source: https://npm.io/package/react-native-sk-loader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
