Skip to content
This repository was archived by the owner on Jan 5, 2022. It is now read-only.

Commit 5faa593

Browse files
committed
example UI
1 parent 22f9c8d commit 5faa593

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

example/src/BigHeaderScreen.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const BigHeaderScreen = ({ navigation }: ScreenProps) => {
2525
height: 250,
2626
},
2727
headerBackground: (
28-
<TouchableOpacity style={{ flex: 1 }}>
28+
<>
2929
<Image
3030
source={{
3131
uri:
@@ -53,11 +53,13 @@ const BigHeaderScreen = ({ navigation }: ScreenProps) => {
5353
borderRadius: 50,
5454
}}
5555
/>
56-
<Text style={{ fontSize: 22, color: 'white', marginTop: 16 }}>
57-
Hello, Big Header.
58-
</Text>
56+
<TouchableOpacity>
57+
<Text style={{ fontSize: 20, color: 'white', marginTop: 16 }}>
58+
Edit Profile
59+
</Text>
60+
</TouchableOpacity>
5961
</View>
60-
</TouchableOpacity>
62+
</>
6163
),
6264
collapsedColor: 'white',
6365
});

0 commit comments

Comments
 (0)