Files
mobile-darmasaba/constants/Headers.ts
2025-02-25 15:09:41 +08:00

18 lines
371 B
TypeScript

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