-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
150 lines (96 loc) · 4.3 KB
/
App.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import { StatusBar } from 'expo-status-bar';
import { render } from 'react-dom';
import { StyleSheet,Image, Text, View, ScrollView, SafeAreaView } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text style={styles.tittle}>STUDENT PORTAL</Text>
<Image style={styles.picture}
source={require('./PROFILE-PICTURE.jpg')} />
<StatusBar style="auto" />
<ScrollView>
< Text style={styles.text2}> SELLO MAJOANG</Text>
< Text style={styles.text2}> 901013562</Text>
< Text style={styles.text2}> BSSM</Text>
< Text style={styles.text2}> [email protected] </Text>
< Text style={styles.format}> YEAR 2 SEMESTER 2 COURSES AND GRADES</Text>
< Text style={styles.text4}> Database Application B</Text>
< Text style={styles.text4}> Probability and statistics +C</Text>
< Text style={styles.text4}> Mobile programming B</Text>
< Text style={styles.text4}> C++ programming 2 A</Text>
< Text style={styles.text4}> Java 1 C</Text>
< Text style={styles.text4}> Software Modelling +A </Text>
< Text style={styles.format}> YEAR 2 SEMESTER 1 COURSES AND GRADES</Text>
< Text style={styles.text4}> Calculus II +A</Text>
< Text style={styles.text4}> Multimedia technology +A</Text>
< Text style={styles.text4}> Data communication & netwoking +A</Text>
< Text style={styles.text4}> C++ programming I A</Text>
< Text style={styles.text4}> principles of web design +A</Text>
< Text style={styles.text4}> fundamentals of internet technology B</Text>
< Text style={styles.format}> YEAR 1 SEMESTER 2 COURSES AND GRADES</Text>
< Text style={styles.text4}> Calculus I +B</Text>
< Text style={styles.text4}> Data communication +C </Text>
< Text style={styles.text4}> Principles of Software enengineering B</Text>
< Text style={styles.text4}> Digital Imaging A</Text>
< Text style={styles.text4}> Introductiong to computer skills C</Text>
< Text style={styles.text4}> Software Modelling and analysis +A</Text>
</ScrollView>
</View>
);
}
const styles = StyleSheet.create({
container: {
marginTop: 35,
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#03A9F4',
},
full:
{
width: '100%',
height: '100%'
},
tittle:
{
alignItems: 'center',
justifyContent: 'center',
fontSize: 30,
color: 'white',
fontStyle: 'normal',
marginLeft: 20
},
text2:{
backgroundColor: '#90CAF9',
alignItems:'center',
justifyContent: 'center',
borderWidth:3,
fontSize: 20,
fontWeight: 'bold'
},
text4:{
backgroundColor: 'turquoise',
justifyContent: 'flex-start',
borderWidth:3,
fontSize: 19,
color: 'white'
},
format: {
fontSize: 17,
fontStyle: 'italic',
justifyContent: 'center',
alignContent: 'center',
color: 'white'
},
picture:
{
width: 200,
height: 200,
borderRadius: 150,
alignItems: 'center',
marginLeft: 12,
marginTop: 5,
borderWidth:3,
backgroundColor: 'white'
},
});