Skip to content

Instantly share code, notes, and snippets.

@sammylupt
Created June 14, 2016 03:05
Show Gist options
  • Save sammylupt/1c482b433db139c657c3a9dc04843bd2 to your computer and use it in GitHub Desktop.
Save sammylupt/1c482b433db139c657c3a9dc04843bd2 to your computer and use it in GitHub Desktop.
BackAndroid.addEventListener("hardwareBackPress", () => {
if (navigator.getCurrentRoutes().length > 1) {
navigator.pop()
return true
} else {
return false
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment