1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import React from 'react';
import {Image, StyleSheet, Text, View} from 'react-native';
import {normalize} from '../../utils';
const BadgeScreenHeader: React.FC = () => {
return (
<View style={styles.container}>
<Image source={require('../../assets/images/badges/brown_badge.png')} />
<View style={styles.universityTextContainer}>
<Text style={styles.universityText}>Brown University Badges</Text>
</View>
<View style={styles.searchTextContainer}>
<Text style={styles.searchText}>
Search for organizations you are a part of!
</Text>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
alignItems: 'center',
marginBottom: '1%',
},
universityTextContainer: {marginTop: 12},
universityText: {
fontSize: normalize(20),
fontWeight: '700',
lineHeight: normalize(23.87),
color: 'white',
},
searchTextContainer: {marginTop: 6},
searchText: {
fontSize: normalize(15),
fontWeight: '500',
lineHeight: normalize(17.9),
color: 'white',
},
});
export default BadgeScreenHeader;
|