-
-
Save KaustubhPatange/ad999d4213677915c90d9e7ae985ab43 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
// for fragment: requireActivity().onBackPressedDispatcher | |
onBackPressedDispatcher.addCallback(object : OnBackPressedCallback(true) { | |
override fun handleOnBackPressed() { | |
// handle logic | |
if (shouldNotInvokeAgain) { | |
this.isEnabled = false | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment