-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuide.js
85 lines (82 loc) · 2.7 KB
/
Guide.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
import React from 'react';
import { StyleSheet, Text, View, Image, TouchableOpacity, Alert, ScrollView } from 'react-native';
function GuidePage() {
return (
<View style={styles.container}>
<ScrollView>
<View style={styles.first}>
<Image style={styles.one_photo} source={require('./assets/noji.png')}></Image>
<Text style={styles.title_text}>노지 찾아보기</Text>
<Text style={styles.sub_text}>노지 빌릴 장소를</Text>
<Text style={styles.sub_text}>검색합니다.</Text>
</View>
<View style={styles.second}>
<Image style={styles.two_photo} source={require('./assets/time.png')}></Image>
<Text style={styles.title_text}>대여 시간 설정하기</Text>
<Text style={styles.sub_text}>대여시간, 반납시간을</Text>
<Text style={styles.sub_text}>설정합니다.</Text>
</View>
<View style={styles.third}>
<Image style={styles.three_photo} source={require('./assets/reserve.png')}></Image>
<Text style={styles.title_text}>위치 클릭하기</Text>
<Text style={styles.sub_text}>검색 결과에 따른</Text>
<Text style={styles.sub_text}>표시된 위치를 클릭 시</Text>
<Text style={styles.sub_text}>자세한 위치 정보가 나옵니다.</Text>
</View>
</ScrollView>
</View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
title_text: {
color:"#222222",
fontSize:18,
fontWeight:"600",
},
sub_text: {
color:"#222222",
fontSize:16,
fontWeight:"300",
},
first: {
marginTop: 40,
marginRight: 20,
marginLeft: 20,
marginBottom: 164,
alignItems: "center",
justifyContent: "center",
},
one_photo: {
marginBottom: 8,
width: 320,
height: 70,
},
second: {
marginRight: 20,
marginLeft: 20,
marginBottom: 164,
alignItems: "center",
justifyContent: "center",
},
two_photo: {
marginBottom: 8,
width: 320,
height: 55,
},
third: {
marginRight: 20,
marginLeft: 20,
marginBottom: 225,
alignItems: "center",
justifyContent: "center",
},
three_photo: {
marginBottom: 8,
width: 320,
height: 352,
},
});
export default GuidePage;