Created
May 21, 2021 15:19
-
-
Save manuelvicnt/a26e26179b80d8a278c634cc5f7a9a78 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LocationFragment: Fragment() { | |
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
// ... | |
viewLifecycleOwner.lifecycleScope.launch { | |
viewLifecycleOwner.repeatOnLifecycle(Lifecycle.State.STARTED) { | |
locationProvider.locationFlow().collect { | |
// New location! Update the map | |
} | |
} | |
} | |
} | |
} |
Should I use repeatOnLifecycle
with Lifecycle.State.CREATED
in Fragment for collecting UI State provided by ViewModel?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add this dependence in the Gradle file
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"