my app having only two base activity and several fragment,, i want to display an Exit alert when user reach particular base fragment by clicking back press
o
You can just:
val callback = requireActivity().onBackPressedDispatcher.addCallback(this) { // Handle the back button event }
For more information you can check this.