bluejoyq

Merge branch 'developer' into 'master'

PromptSearch.js change design

icon, text style -> change color
각 슬라이드별 icon change

See merge request !2
...@@ -15,7 +15,7 @@ const FirstSlide = () => ( ...@@ -15,7 +15,7 @@ const FirstSlide = () => (
15 ) 15 )
16 const SecondSlide = () => ( 16 const SecondSlide = () => (
17 <View style={styles.slide2} > 17 <View style={styles.slide2} >
18 - <Icon name='search' style={styles.icon} size={50} /> 18 + <Icon name='question' style={styles.icon} size={50} />
19 <Text style={styles.text}>길잡이가 수정한</Text> 19 <Text style={styles.text}>길잡이가 수정한</Text>
20 <Text style={styles.text}>검색 문장을 확인하세요</Text> 20 <Text style={styles.text}>검색 문장을 확인하세요</Text>
21 <Text style={styles.subtext}>길잡이는 항상 최적의</Text> 21 <Text style={styles.subtext}>길잡이는 항상 최적의</Text>
...@@ -24,7 +24,7 @@ const SecondSlide = () => ( ...@@ -24,7 +24,7 @@ const SecondSlide = () => (
24 ) 24 )
25 const ThirdSlide = () => ( 25 const ThirdSlide = () => (
26 <View style={styles.slide3} > 26 <View style={styles.slide3} >
27 - <Icon name='search' style={styles.icon} size={50} /> 27 + <Icon name='bar-chart' style={styles.icon} size={50} />
28 <Text style={styles.text}>검색 점수와 그래프로</Text> 28 <Text style={styles.text}>검색 점수와 그래프로</Text>
29 <Text style={styles.text}>검색능력을 체크하세요</Text> 29 <Text style={styles.text}>검색능력을 체크하세요</Text>
30 <Text style={styles.subtext}>길잡이는 당신의</Text> 30 <Text style={styles.subtext}>길잡이는 당신의</Text>
...@@ -33,10 +33,9 @@ const ThirdSlide = () => ( ...@@ -33,10 +33,9 @@ const ThirdSlide = () => (
33 ) 33 )
34 const LastSlide = () => ( 34 const LastSlide = () => (
35 <View style={styles.slide4} > 35 <View style={styles.slide4} >
36 - <Icon name='search' style={styles.icon} size={50} />
37 <Text style={styles.text}> 안의 검색 도우미</Text> 36 <Text style={styles.text}> 안의 검색 도우미</Text>
38 <Text style={styles.text}>길잡이에서</Text> 37 <Text style={styles.text}>길잡이에서</Text>
39 - <Text style={styles.text}>검색을 시작하세요</Text> 38 + <Text style={styles.subtext}>검색을 시작하세요!</Text>
40 </View> 39 </View>
41 ) 40 )
42 41
...@@ -69,11 +68,11 @@ const styles = StyleSheet.create({ ...@@ -69,11 +68,11 @@ const styles = StyleSheet.create({
69 marginBottom: 10, 68 marginBottom: 10,
70 fontSize: 30, 69 fontSize: 30,
71 fontWeight: 'bold', 70 fontWeight: 'bold',
72 - color:'#999999', 71 + color:'#696969',
73 }, 72 },
74 icon: { 73 icon: {
75 marginBottom: 20, 74 marginBottom: 20,
76 - color: '#999999' 75 + color: '#696969'
77 }, 76 },
78 subtext:{ 77 subtext:{
79 marginBottom: 10, 78 marginBottom: 10,
......