You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
272 B

package org.jetbrains.compose.videoplayer
import androidx.compose.runtime.Composable
@Composable
fun VideoPlayer(url: String, width: Int, height: Int) {
VideoPlayerImpl(url, width, height)
}
internal expect fun VideoPlayerImpl(url: String, width: Int, height: Int)