Skip to content

Commit

Permalink
Fix components compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
igordmn committed Sep 28, 2021
1 parent eb7d618 commit 5db79e4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package org.jetbrains.compose.videoplayer.demo

import androidx.compose.material.MaterialTheme
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.WindowState
import androidx.compose.ui.window.singleWindowApplication
import org.jetbrains.compose.videoplayer.VideoPlayer

fun main() {
singleWindowApplication(
title = "Video Player",
state = WindowState(width = 800, height = 800)
state = WindowState(width = 800.dp, height = 800.dp)
) {
MaterialTheme {
VideoPlayer(

0 comments on commit 5db79e4

Please sign in to comment.