-
Notifications
You must be signed in to change notification settings - Fork 0
/
Header.js
73 lines (60 loc) · 1.35 KB
/
Header.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"use strict";
import { Text, StyleSheet, View, Image, Dimensions } from "react-native";
import React from "react";
const Header = () => (
<View style={styles.hcontainer}>
<View style={styles.ur_login}>
<Text style={styles.text}>Login</Text>
<Image style={styles.img_lang} source={require("./assets/15s.png")} />
</View>
<Text style={styles.text2}>Please login to your account.</Text>
</View>
);
const DEVICE_WIDTH = Dimensions.get("window").width;
const styles = StyleSheet.create({
hcontainer: {
borderBottomColor: "#22abb6",
backgroundColor: "#fff",
// height: 100,
marginTop: 28,
},
background: {
paddingBottom: 40,
paddingTop: 96,
paddingHorizontal: 32,
backgroundColor: "#fff",
borderColor: "#fff",
borderBottomColor: "#22abb6",
},
text: {
fontSize: 32,
fontWeight: "200",
textAlign: "left",
paddingTop: 20,
marginLeft: 21,
color: "#22abb6",
},
ur_login: {
flex: 1,
top: 0,
width: DEVICE_WIDTH,
flexDirection: "row",
justifyContent: "space-around",
},
img_lang: {
width: 85,
marginTop: 23,
height: 32,
marginLeft: 150,
},
text2: {
fontSize: 14,
fontWeight: "300",
textAlign: "left",
paddingTop: 30,
marginLeft: 21,
paddingBottom: 25,
color: "#22abb6",
},
});
export default Header;