new: init kmp project

This commit is contained in:
2026-05-18 18:21:49 +02:00
commit af66fd04e5
63 changed files with 5080 additions and 0 deletions
@@ -0,0 +1,5 @@
package fr.ajaury.gwenedeg
import androidx.compose.ui.window.ComposeUIViewController
fun MainViewController() = ComposeUIViewController { App() }
@@ -0,0 +1,9 @@
package fr.ajaury.gwenedeg
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()