config.js
835 Bytes
import React from 'react'
import { Colors } from 'react-native/Libraries/NewAppScreen'
import { CardStyleInterpolators } from '@react-navigation/stack'
import { setUnit } from '../libs/utils'
import { Icons } from '../assets/icons'
const headerStyle = {
headerTitleAlign: 'center', // 文字居中
headerStyle: {
backgroundColor: Colors.white
}, // 标题栏样式
headerTintColor: '#333333', // 标题栏字体颜色
headerTitleStyle: {
fontSize: setUnit(38)
},
headerBackImage: () => (<Icons name="zuo" size={30} color="#333" />), // 标题栏返回图标
cardStyleInterpolator: CardStyleInterpolators.forHorizontalIOS, // 设置左右滑动
gestureDirection: 'horizontal', // 初始化右滑手势配置
gestureEnabled: true // 启用右滑返回
}
export { headerStyle }