From 2657441113a464814053c37cf1d127a3ffb793d8 Mon Sep 17 00:00:00 2001 From: olivier bouillet Date: Sat, 23 Apr 2022 22:54:34 +0200 Subject: [PATCH] chore: fix bad default state --- examples/basic/VideoPlayer.android.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/VideoPlayer.android.tsx b/examples/basic/VideoPlayer.android.tsx index 927ac4bf..01757ed8 100644 --- a/examples/basic/VideoPlayer.android.tsx +++ b/examples/basic/VideoPlayer.android.tsx @@ -22,7 +22,7 @@ class VideoPlayer extends Component { resizeMode: 'contain', duration: 0.0, currentTime: 0.0, - paused: true, + paused: false, }; video: Video;