Files
mobile-darmasaba/constants/Headers.ts
2025-06-24 11:28:35 +08:00

18 lines
372 B
TypeScript

const bgColorDefault = '#19345E';
export const Headers = {
shadow: {
headerStyle: {
backgroundColor: bgColorDefault,
},
headerTintColor: '#fff',
headerShadowVisible: true,
},
noShadow: {
headerStyle: {
backgroundColor: bgColorDefault,
},
headerTintColor: '#fff',
headerShadowVisible: false
}
}