Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/robcalcroft/react-native-fade-in-view

:performing_arts: A simple and lightweight RN component that fades in its children
https://github.com/robcalcroft/react-native-fade-in-view

animated fade-in fader react-native

Last synced: 2 months ago
JSON representation

:performing_arts: A simple and lightweight RN component that fades in its children

Lists

README

        

# react-native-fade-in-view [![npm version](https://badge.fury.io/js/react-native-fade-in-view.svg)](https://badge.fury.io/js/react-native-fade-in-view)
> A simple and lightweight RN component that fades in its children

## Install
`yarn add react-native-fade-in-view` or `npm install react-native-fade-in-view --save`

## API
### `onFadeComplete`
A function that is called when the fade animation completes

### `duration`
The duration of the fade animation, **`500ms`** by default

### `style`
Style to be given to the view

## Usage
```javascript
import FadeInView from 'react-native-fade-in-view';

const myFadeInComponent = () => (
alert('Ready')}
>
This view will fade in nicely

);
```