Animation library built in `JavaScript` only. All animation created with `Animated` API and boosted with `useNativeDriver` which uses the native animation by `RCTAnimation`.
npm install react-native-animation-libraryAnimation library built in JavaScript only.
All animation created with Animated API and boosted with useNativeDriver which uses the native animation by RCTAnimation.
Fade appearance listView. Based on ListView therefore all ListView props can be used.

####API
Props | Type | Description
------ | ----- | -----initialOpacity | [Number] | Cell initial opacity, between 0-1 offsetY | [Number] | Cell Y offset cellAnimationDelay |[Number]| Cell animation delay. Multiple cell# * cellAnimationDelayduration | [Number] | The animation duration in milliseconds[Number]

#### API
Props | Type | Description
------ | ----- | -----isSelected | [Boolean] | The selection state of the component selectedImage | [Image] | The image to show when state is selectedunSelectedImage |[Image]| The image to show when state is unselectedduration | [Object] | The animation Bounce duration object {bounceOut: [Number], bounceIn: [Number]}
#### Example
````
onPress={() => this.setState({starIsSelected: !this.state.starIsSelected})}
style={{margin: 30}}>
unSelectedImage={require('
selectedImage={require('
duration={{bounceOut: 50, bounceIn: 100}}
/>