tabBar.js
314 Bytes
'use strict';
export function shouldShowTabBar(navigationState) {
let key = navigationState.key;
let index = key.substring(0, 1);
return index == 1;
}
export function shouldHideTabBar(navigationState) {
let key = navigationState.key;
let index = key.substring(0, 1);
return index != 0;
}