Skip to content

Instantly share code, notes, and snippets.

@gokmenbayram
Last active March 3, 2022 12:23
Show Gist options
  • Save gokmenbayram/c28150b669cd46db8fc5cae591f5747d to your computer and use it in GitHub Desktop.
Save gokmenbayram/c28150b669cd46db8fc5cae591f5747d to your computer and use it in GitHub Desktop.
Fragment - onBackPressed()
private fun onBackPressed() {
val callback = object : OnBackPressedCallback(true) {
override fun handleOnBackPressed() {
//OnBackPressed
}
}
requireActivity().onBackPressedDispatcher.addCallback(viewLifecycleOwner, callback)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment