diff options
Diffstat (limited to 'composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt')
| -rw-r--r-- | composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt index a6362e3..d52c60f 100644 --- a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt +++ b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt @@ -1,9 +1,7 @@ package coffee.liz.abstractionengine -import platform.UIKit.UIDevice - class IOSPlatform: Platform { - override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion + override val needsTouchscreenControls = true } actual fun getPlatform(): Platform = IOSPlatform()
\ No newline at end of file |
