Revize 006d5d56
Přidáno uživatelem Michal Schwob před více než 1 rok
src/pages/Navigation.tsx | ||
---|---|---|
31 | 31 |
<Stack.Navigator initialRouteName="Home" |
32 | 32 |
screenOptions={ ({ navigation }) => ( { |
33 | 33 |
headerStyle: { |
34 |
backgroundColor: nativeBaseTheme.colors.primary[800],
|
|
34 |
backgroundColor: nativeBaseTheme.colors.primary[50],
|
|
35 | 35 |
}, |
36 |
headerTintColor: '#fff', |
|
37 | 36 |
headerTitleStyle: { |
38 | 37 |
fontWeight: 'bold', |
38 |
color: nativeBaseTheme.colors.primary[500], |
|
39 | 39 |
}, |
40 |
headerTintColor: nativeBaseTheme.colors.primary[500], |
|
40 | 41 |
headerRight: () => ( |
41 | 42 |
<HStack space={ 0 } alignItems="end" marginRight={-3}> |
42 | 43 |
<IconButton |
... | ... | |
71 | 72 |
/> |
72 | 73 |
</HStack> |
73 | 74 |
), |
75 |
contentStyle: { |
|
76 |
backgroundColor: nativeBaseTheme.colors.primary[50], |
|
77 |
}, |
|
74 | 78 |
} ) } |
75 | 79 |
> |
76 | 80 |
{ loggedIn ? ( |
Také k dispozici: Unified diff
NEW: new colors added
re #10847