Nessuna descrizione

BaseNavigationBarStyle.js 388B

1234567891011121314151617
  1. /**
  2. * Created by zack on 2018/4/29.
  3. */
  4. import {
  5. Platform
  6. } from 'react-native'
  7. const BaseNavigationBarStyle = {
  8. drawUnderNavBar: true,
  9. drawUnderTabBar: true,
  10. navBarBackgroundColor: '#ffffff',
  11. navBarButtonColor: '#000000',
  12. navBarTranslucent: Platform.OS === 'ios' ? true : false,
  13. tabBarHidden: true //第二级所有页面都隐藏tab bar
  14. }
  15. export default BaseNavigationBarStyle