bluejoyq

color change

...@@ -13,8 +13,8 @@ npm-debug.* ...@@ -13,8 +13,8 @@ npm-debug.*
13 *.orig.* 13 *.orig.*
14 web-build/ 14 web-build/
15 web-report/ 15 web-report/
16 -*/.expo/* 16 +*/.expo
17 -*/.expo-shared/* 17 +*/.expo-shared
18 18
19 # macOS 19 # macOS
20 .DS_Store 20 .DS_Store
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
2 "devToolsPort": 19002, 2 "devToolsPort": 19002,
3 "expoServerPort": 19000, 3 "expoServerPort": 19000,
4 "packagerPort": 19001, 4 "packagerPort": 19001,
5 - "packagerPid": 27784, 5 + "packagerPid": 22340,
6 "expoServerNgrokUrl": "https://ru-c66.bluejoy.searchguide.exp.direct", 6 "expoServerNgrokUrl": "https://ru-c66.bluejoy.searchguide.exp.direct",
7 "packagerNgrokUrl": "https://packager.ru-c66.bluejoy.searchguide.exp.direct", 7 "packagerNgrokUrl": "https://packager.ru-c66.bluejoy.searchguide.exp.direct",
8 - "ngrokPid": 16708 8 + "ngrokPid": 26496
9 } 9 }
......
1 { 1 {
2 - "hostType": "tunnel", 2 + "hostType": "lan",
3 "lanType": "ip", 3 "lanType": "ip",
4 "dev": true, 4 "dev": true,
5 "minify": false, 5 "minify": false,
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 "privacy": "public", 5 "privacy": "public",
6 "sdkVersion": "35.0.0", 6 "sdkVersion": "35.0.0",
7 "androidStatusBar": { 7 "androidStatusBar": {
8 - "backgroundColor": "#06182d" 8 + "backgroundColor": "#2C658E"
9 }, 9 },
10 "platforms": [ 10 "platforms": [
11 "ios", 11 "ios",
......
...@@ -30,13 +30,13 @@ const SearchCard = (props) => ( ...@@ -30,13 +30,13 @@ const SearchCard = (props) => (
30 left={ () => ( <SearchIcon site={props.site} /> ) } /> 30 left={ () => ( <SearchIcon site={props.site} /> ) } />
31 <Card.Content> 31 <Card.Content>
32 <Paragraph>{props.content}</Paragraph> 32 <Paragraph>{props.content}</Paragraph>
33 - </Card.Content> 33 + </Card.Content>
34 <Card.Actions style={{flexDirection:'row', justifyContent:'space-between'}}> 34 <Card.Actions style={{flexDirection:'row', justifyContent:'space-between'}}>
35 <Text style={{marginTop:7, marginLeft: 10,fontStyle:'italic'}}>정확도 : {props.metric}%</Text> 35 <Text style={{marginTop:7, marginLeft: 10,fontStyle:'italic'}}>정확도 : {props.metric}%</Text>
36 - <Button mode='contained' color= {BUTTON} labelStyle={{color:WHITE_MAIN}} onPress={()=>{Linking.openURL(props.url)}}> 36 + <Button mode='contained' color= {LIGHT_MAIN} labelStyle={{color:WHITE_MAIN}} onPress={()=>{Linking.openURL(props.url)}}>
37 자세히보기 37 자세히보기
38 </Button> 38 </Button>
39 - </Card.Actions> 39 + </Card.Actions>
40 </Card> 40 </Card>
41 ); 41 );
42 42
......