Last active
February 17, 2023 19:31
-
-
Save LDRAlighieri/2aed18d637315419534fc48eddaa76d1 to your computer and use it in GitHub Desktop.
Example of corbind-viewpager2 ViewPager2.pageSelections extension
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
viewLifecycleOwner.lifecycleScope.launch { | |
repeatOnLifecycle(Lifecycle.State.STARTED) { | |
productsViewPager.pageSelections() | |
.onEach(::onPageSelected) | |
.launchIn(this) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment