Skip to content

Instantly share code, notes, and snippets.

@tfcporciuncula
Created May 1, 2023 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tfcporciuncula/0869cfc2892f0bae6379cd95bd0a73a7 to your computer and use it in GitHub Desktop.
Save tfcporciuncula/0869cfc2892f0bae6379cd95bd0a73a7 to your computer and use it in GitHub Desktop.
import androidx.lifecycle.ViewModel as AndroidXViewModel
import androidx.lifecycle.viewModelScope as androidXViewModelScope
actual abstract class ViewModel actual constructor() : AndroidXViewModel() {
actual val viewModelScope: CoroutineScope = androidXViewModelScope
actual override fun onCleared() {
super.onCleared()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment