Add nav logo image and update AppNavigator

This commit is contained in:
2026-05-14 13:53:43 +02:00
parent 498958a27c
commit c221ef934a
2 changed files with 1 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 871 KiB

+1 -1
View File
@@ -31,7 +31,7 @@ export default function AppNavigator() {
headerTintColor: '#F4F1EA', headerTintColor: '#F4F1EA',
headerTitle: () => ( headerTitle: () => (
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}> <View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
<Image source={require('../../assets/icon.png')} style={{ width: 28, height: 28 }} resizeMode="contain" /> <Image source={require('../../assets/nav-logo.png')} style={{ width: 28, height: 28, borderRadius: 6 }} resizeMode="contain" />
<Text style={{ color: '#F4F1EA', fontSize: 18, fontWeight: '600' }}>Time To Leave</Text> <Text style={{ color: '#F4F1EA', fontSize: 18, fontWeight: '600' }}>Time To Leave</Text>
</View> </View>
), ),