blob: a6362e37c597bb8041bcf2b9c268fd07021b0c13 (
plain)
1
2
3
4
5
6
7
8
9
|
package coffee.liz.abstractionengine
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()
|