-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectDetailsPanel.js
65 lines (59 loc) · 1.58 KB
/
ProjectDetailsPanel.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
import React, {Component} from 'react';
import{
Alert,
StyleSheet,
ScrollView,
View,
Text,
}from 'react-native';
type Props ={};
export default class ProjectDetailPanel extends Component<Props> {
static navigationOptions ={
title:'Project Detail',
};
constructor(props){
super(props)
this.state={
};
}
render(){
return (
<ScrollView style={styles.container}>
<Text style={styles.title}>Smart Entreprenenur Tools</Text>
<Text style={styles.subtitle}>Description</Text>
<Text style={styles.displaytext}>This is a tool can bring a lot of benefits to entrepreneur</Text>
<Text style={styles.subtitle}>Framework</Text>
<Text style={styles.displaytext}>React Native</Text>
<Text style={styles.subtitle}>Tools</Text>
<Text style={styles.displaytext}>GitHub</Text>
<Text style={styles.subtitle}>Prerequisite</Text>
<Text style={styles.displaytext}>Cloud Computing, Data Mining</Text>
</ScrollView>
);
}
}
const styles = StyleSheet.create({
container:{
flex:1,
padding:20,
backgroundColor:'#fff',
},
center:{
justifyContent:'center',
alignItems:'center',
},
title:{
fontSize:50,
marginBottom:30,
},
subtitle:{
fontSize:40,
marginBottom:15,
borderBottomColor: 'black',
borderBottomWidth: 1,
},
displaytext:{
fontSize:30,
marginBottom:30,
},
});