Browse Source
The issue was in a case where there wasn't a direct dependency on the skiko artifact, the task would attempt to get one at task execution time. This moves that to task configuration time.pull/4577/head v1.6.10-dev1561
Eliezer Graber
8 months ago
committed by
GitHub
7 changed files with 63 additions and 9 deletions
@ -0,0 +1,17 @@
|
||||
plugins { |
||||
id 'org.jetbrains.kotlin.multiplatform' |
||||
id 'org.jetbrains.compose' |
||||
} |
||||
|
||||
kotlin { |
||||
jvm('desktop') {} |
||||
|
||||
sourceSets { |
||||
commonMain.dependencies { |
||||
api compose.runtime |
||||
api compose.foundation |
||||
api compose.material |
||||
api compose.uiTooling |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,21 @@
|
||||
/* |
||||
* Copyright 2020-2021 JetBrains s.r.o. and respective authors and developers. |
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file. |
||||
*/ |
||||
|
||||
import androidx.compose.material.Text |
||||
import androidx.compose.material.Button |
||||
import androidx.compose.runtime.* |
||||
|
||||
@Composable |
||||
fun ExampleComposable() { |
||||
var text by remember { mutableStateOf("Hello, World!") } |
||||
|
||||
Button(onClick = { |
||||
text = "Hello, $platformName!" |
||||
}) { |
||||
Text(text) |
||||
} |
||||
} |
||||
|
||||
val platformName: String = "Desktop" |
Loading…
Reference in new issue