Skip to content

Instantly share code, notes, and snippets.

@jaozinfs
Created September 22, 2020 14:32
Show Gist options
  • Save jaozinfs/3541c770dd6c4e9f1c8d12245b5696ba to your computer and use it in GitHub Desktop.
Save jaozinfs/3541c770dd6c4e9f1c8d12245b5696ba to your computer and use it in GitHub Desktop.
cancela e inicia um job do flow module
private fun startSlide() {
slideJob?.cancel()
slideJob = lifecycleScope.launchWhenCreated {
flipModuleFlow(pager.currentItem, movieImagesAdapter.getAdapterSize())
.collect { currentPosition->
pager.setCurrentItem(currentPosition, true)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment