Is it safe to do fragment transactions when observ...
# android
l
Is it safe to do fragment transactions when observing a LiveData using
viewLifecycleOwner.lifecycleScope
? I know you normally wrap transactions with
whenStarted
when launching a coroutine using the lifecycleScope, is is the same with observing a LiveData?
👌 1