Are those correct? ```Instead of MutableLiveData w...
# flow
s
Are those correct?
Copy code
Instead of MutableLiveData with default value to MutableStateFlow
Instead of MutableLiveData without default value to MutableSharedFlow
Instead of SingleLiveEvent to Channel.receiveAsFlow
s
Yes, although most cases for SingleLiveEvent you could use a MutableSharedFlow with no buffer or replay
👀 1