Animesh Sahu
Window( title = "Compose for Desktop", ) { DesktopMaterialTheme(colors = lightColors(background = Color.Cyan)) { Text("Test") } }
Igor Demin
Window( title = "Compose for Desktop", ) { DesktopMaterialTheme(colors = lightColors(background = Color.Cyan)) { Box(Modifier.fillMaxSize().background(MaterialTheme.colors.background)) { Text("Test") } } }
A modern programming language that makes developers happier.