18 lines
371 B
TypeScript
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
|
|
}
|
|
} |