A simple and lightweight RN component that fades in its children
npm install react-native-fade-in-viewyarn add react-native-fade-in-view or npm install react-native-fade-in-view --save500ms by defaultjavascript
import FadeInView from 'react-native-fade-in-view';const myFadeInComponent = () => (
duration={750}
style={{ alignItems: 'center' }}
onFadeComplete={() => alert('Ready')}
>
This view will fade in nicely
);
``