Skip to content

Instantly share code, notes, and snippets.

@galex
Forked from yshrsmz/1_common.kt
Created April 13, 2019 05:43
Show Gist options
  • Save galex/a319a9e86a4d7cc67167c1ac19ecd5d8 to your computer and use it in GitHub Desktop.
Save galex/a319a9e86a4d7cc67167c1ac19ecd5d8 to your computer and use it in GitHub Desktop.
Multiplatform ViewModel
expect abstract class ViewModel() {
open fun onCleared()
}
actual abstract class ViewModel : androidx.lifecycle.ViewModel() {
public actual override fun onCleared() {
super.onCleared()
}
}
actual abstract class ViewModel {
actual open fun onCleared() {
// no-op
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment