Each FlexImage gives a warning due to the animated load-in because useNativeDriver is not specified:
this._onThumbnailLoad = () => {
Animated.timing(this.state.thumbnailOpacity, {
toValue: 1,
duration: 250,
}).start();
};
this._onLoad = () => {
Animated.timing(this.state.thumbnailOpacity, {
toValue: 0,
duration: 250,
}).start();
};