I'm having difficulty animating the deletion of a row from ListView using LayoutAnimation.
Since LayoutAnimation.spring preset animation handles view updates with a spring and view creations with a fade, I expected the bottom existing rows to spring upwards after the deletion. Instead, they fade in.
Using RN 0.18.1
let ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
var movies = [movie1, movie2, movie3, movie4, movie5];
...
renderRow(row) {
return <MovieRow key={row.movieId} />
}
...
// immutable delete of element in reducer (redux)
movies = movies.slice(0, 2).concat(movies.slice(3));
...
LayoutAnimation.spring();
this.setState({
dataSource: ds.cloneWithRows(movies)
});
The latest
react-native
already support animation on deletion. I did something like:Only create or delete will trigger opacity easing in and out. Update the component just do easeIn and ease out.
Then hook the customLayoutLinear when mounting the component