We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83db468 commit 007bc41Copy full SHA for 007bc41
1 file changed
mediaplayer/src/androidMain/kotlin/io/github/kdroidfilter/composemediaplayer/VideoPlayerState.android.kt
@@ -5,6 +5,7 @@ import android.content.Context
5
import android.content.Intent
6
import android.content.IntentFilter
7
import android.net.Uri
8
+import androidx.annotation.OptIn
9
import androidx.compose.runtime.Stable
10
import androidx.compose.runtime.getValue
11
import androidx.compose.runtime.mutableDoubleStateOf
@@ -798,5 +799,6 @@ actual open class VideoPlayerState internal constructor(isInPreview: Boolean) {
798
799
}
800
801
802
+@OptIn(UnstableApi::class)
803
internal actual fun createVideoPlayerState(isInPreview: Boolean): VideoPlayerState =
804
VideoPlayerState(isInPreview)
0 commit comments