<CountDownTimer in Android ViewModel executes onFi...
# stackoverflow
u
CountDownTimer in Android ViewModel executes onFinish twice I tried to implement a timer in a ViewModel that after ten seconds returns to the previous view, but it doesn't work at all. I wonder if CountDownTimer can even be used in a ViewModel. class PairingScreenViewModel( private val routing: NavController, ) : ViewModel() { var content = mutableStateOf(10) var counter: CountDownTimer? = null init { viewModelScope.launch { delay(1000L) counter = object : CountDownTimer(9000L, 1000L) {...