Skip to content

Instantly share code, notes, and snippets.

@erdalkaymak
Created December 26, 2023 07:34
Show Gist options
  • Select an option

  • Save erdalkaymak/9cfc56f1f5d56b23465d986142bdeed8 to your computer and use it in GitHub Desktop.

Select an option

Save erdalkaymak/9cfc56f1f5d56b23465d986142bdeed8 to your computer and use it in GitHub Desktop.
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.model()
}
actual fun getPlatform(): Platform = IOSPlatform()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment