feat: scaffold KMP project with Compose Multiplatform (Android, iOS, Desktop)

This commit is contained in:
2026-07-08 16:53:13 +02:00
parent 3b6fae1b95
commit 15ae8cd046
15 changed files with 560 additions and 0 deletions
@@ -0,0 +1,10 @@
package ch.parano.myice
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(onCloseRequest = ::exitApplication, title = "MyIce") {
Text("MyIce")
}
}