react-native-navigation的迁移库

styles.js 516B

1234567891011121314151617181920212223242526
  1. export const navigatorStyle = {
  2. navBarHideOnScroll: true,
  3. drawUnderTabBar: true,
  4. navBarButtonColor: '#cacaca',
  5. navBarBackgroundColor: '#31363c',
  6. navBarTextColor: '#cacaca',
  7. tabBarBackgroundColor: '#31363c',
  8. tabBarButtonColor: '#cacaca',
  9. tabBarSelectedButtonColor: '#cacaca'
  10. };
  11. export const primaryDark = {
  12. backgroundColor: '#1f2222'
  13. };
  14. export const primaryLight = {
  15. backgroundColor: '#cacaca'
  16. };
  17. export const textLight = {
  18. color: '#cacaca'
  19. };
  20. export const textDark = {
  21. color: '#1f2222'
  22. };