Initial commit

This commit is contained in:
2025-09-17 11:31:16 -03:00
commit 38c87e0d1c
100 changed files with 13378 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package dev.carlosmartino.triplogic
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()