Added KMP project Scaffold

This commit is contained in:
2026-02-12 14:15:16 -05:00
parent cfdf39e6b9
commit 41c0c8d405
54 changed files with 1619 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package net.kpuig.concord
class JVMPlatform: Platform {
override val name: String = "Java ${System.getProperty("java.version")}"
}
actual fun getPlatform(): Platform = JVMPlatform()

View File

@@ -0,0 +1,13 @@
package net.kpuig.concord
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "Concord",
) {
App()
}
}