UNPKG

exit-on-double-back

Version:

Exits app when back button is pressed twice in the passed interval on the index route of react-navigation

13 lines (11 loc) 291 B
function getCurrentRouteName (navigationState) { if (!navigationState) { return null; } const route = navigationState.routes[navigationState.index]; if (route.routes) { return getCurrentRouteName(route); } return route.routeName; } module.exports = getCurrentRouteName;