Beginner here. I use walk() to generate a Sequence and then updating a StateFlow in a ViewModel. My expectation were to have a stream of update but I only get the final result. What did I miss? I've also tried
Copy code
viewModelScope.launch(Dispatchers.Default) and withContext(Dispatchers.Main)
to update the Flow but still no gradual update. Thanks for any recommandation