Skip to content

Commit

Permalink
Add isInteraction: false (#2777)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickycodes authored Jun 10, 2021
1 parent 0bb5b1c commit a8e2d58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/components/Views/MediaPlayer/AndroidMediaPlayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,15 @@ export default function VideoPlayer({
toValue: animations.loader.MAX_VALUE,
duration: 1500,
easing: Easing.linear,
useNativeDriver: false
useNativeDriver: false,
isInteraction: false
}),
Animated.timing(animations.loader.rotate, {
toValue: 0,
duration: 0,
easing: Easing.linear,
useNativeDriver: false
useNativeDriver: false,
isInteraction: false
})
]).start(loadAnimation);
}
Expand Down

0 comments on commit a8e2d58

Please sign in to comment.