Skip to content

Instantly share code, notes, and snippets.

View zacharyyz's full-sized avatar

Zachary Zhou zacharyyz

View GitHub Profile
@zacharyyz
zacharyyz / Navigation.js
Created October 12, 2018 02:58
React Navigation tabBarOnPress scroll to top
const _scrollTop = navigation => {
if (navigation.isFocused() && navigation.state.index > 0) {
// Pop to root on tab bar pressed if already focused on the tab
navigation.popToTop();
} else {
// Scroll to top if at root of tab
const navigationInRoute = navigation.getChildNavigation(
navigation.state.routes[0].key
);