Animesh Sahu
11/09/2020, 1:17 PMWindow(
title = "Compose for Desktop",
) {
DesktopMaterialTheme(colors = lightColors(background = Color.Cyan)) {
Text("Test")
}
}
Animesh Sahu
11/09/2020, 1:18 PMIgor Demin
11/09/2020, 1:24 PMWindow(
title = "Compose for Desktop",
) {
DesktopMaterialTheme(colors = lightColors(background = Color.Cyan)) {
Box(Modifier.fillMaxSize().background(MaterialTheme.colors.background)) {
Text("Test")
}
}
}
Animesh Sahu
11/09/2020, 1:56 PM