/** * Created by zack on 2018/4/29. */ import { Platform } from 'react-native' const BaseNavigationBarStyle = { drawUnderNavBar: true, drawUnderTabBar: true, navBarBackgroundColor: '#ffffff', navBarButtonColor: '#000000', navBarTranslucent: Platform.OS === 'ios' ? true : false, tabBarHidden: true //第二级所有页面都隐藏tab bar } export default BaseNavigationBarStyle