Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Created May 2, 2024 23:31
Show Gist options
  • Save igorescodro/23a56e5e0d1a72940dadcfce88069e04 to your computer and use it in GitHub Desktop.
Save igorescodro/23a56e5e0d1a72940dadcfce88069e04 to your computer and use it in GitHub Desktop.
package com.escodro.task.presentation.detail.main
//...
import dev.icerock.moko.mvvm.viewmodel.ViewModel
internal class TaskViewModel : ViewModel() {
fun loadTaskInfo() {
// Everything an Android ViewModel has
viewModelScope.launch { doSuspendStuff() }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment