# react-native-splashed-app

> react-native app container to support splash screen functionallity

Latest version **1.0.13** (published 2019-03-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-splashed-app
pnpm add react-native-splashed-app
yarn add react-native-splashed-app
bun add react-native-splashed-app
```

## 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.13 |
| Published | 2019-03-11 |
| First published | 2017-10-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 18.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Gal Ziv |
| Maintainers | galziv |
| Keywords | react-native, splash, splash-screen |

## Links

- npm: https://www.npmjs.com/package/react-native-splashed-app
- Repository: https://github.com/galziv/react-native-splashed-app
- Homepage: https://github.com/galziv/react-native-splashed-app#readme
- Issues: https://github.com/galziv/react-native-splashed-app/issues
- npm.io page: https://npm.io/package/react-native-splashed-app

## Recent versions

- 1.0.13 (latest) — 2019-03-11
- 1.0.12 — 2019-03-11
- 1.0.11 — 2019-03-11
- 1.0.10 — 2018-11-16
- 1.0.9 — 2018-11-16
- 1.0.8 — 2018-11-16
- 1.0.7 — 2017-10-25
- 1.0.6 — 2017-10-24
- 1.0.5 — 2017-10-24
- 1.0.4 — 2017-10-21
- 1.0.3 — 2017-10-21
- 1.0.2 — 2017-10-21
- 1.0.1 — 2017-10-21
- 1.0.0 — 2017-10-21

## README

# react-native-splashed-app
react-native app container to support splash screen functionallity

## Usage
First add package:
`npm install react-native-splashed-app --save`

In your App.js

```javascript
import SplashApp from 'react-native-splashed-app'

// more code

<SplashedApp imageSource={require('./App/Images/splash.jpg')} direction="up" duration="2000" withFadeOut>
   <App></App>
</SplashedApp>
```

If you use redux
```javascript
<Provider store={store}>
   <SplashedApp imageSource={require('./App/Images/splash.jpg')} direction="up" duration="2000" withFadeOut>
      <App></App>
   </SplashedApp>
</Provider>
```

## API
parameter|type|optional(default)
|---|---|---|
imageSource|require('image/file/path')|if text supplied
text|string|yes
baseColor|string|yes
direction|string|yes (up)
duration|number|yes (3000)
withFadeOut|bool|yes (false)

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