-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactuscomponent.js
47 lines (45 loc) · 1.36 KB
/
contactuscomponent.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
import React, { Component } from 'react';
import { StyleSheet,View,Text } from 'react-native';
import { Card } from 'react-native-elements';
export default class Contactus extends Component {
render()
{
return (
<Card>
<View >
<Text style={{textAlign: "center",fontSize: 16,fontWeight: "bold"}}>Contact Information</Text>
</View>
<View
style={{ paddingTop: 15 ,borderBottomColor: 'silver', borderBottomWidth: 1, }}
/>
<View style={{paddingTop: 25}}>
<Text style={{fontSize: 15}}>
121, Clear Water Bay Road
Clear Water Bay, Kowloon
HONG KONG</Text>
</View>
<View style={{paddingTop: 23}}>
<Text style={{fontSize: 15}}>
Tel: +852 1234 5678</Text>
</View>
<View style={{paddingTop: 23}}>
<Text style={{fontSize: 15}}>
Fax: +852 8765 4321</Text>
</View>
<View style={{paddingTop: 23}}>
<Text style={{fontSize: 15}}>
Email: [email protected]</Text>
</View>
</Card>
);
}
}
const style= StyleSheet.create(
{
container:{
backgroundColor: '#fff',
flex:1,
alignItems: 'center',
justifyContent: 'center'
}
});