Skip to content

Commit 6c3188d

Browse files
moved images to assets
1 parent c6f5f8d commit 6c3188d

32 files changed

+1832
-132
lines changed

App.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ import {
1313
TouchableHighlight,
1414
} from "react-native";
1515

16-
import Header from "./Header";
16+
import Header from "./screens/Header";
1717
import * as Google from "expo-google-app-auth";
18-
import SecondScreen from "./SecondScreen";
18+
import SecondScreen from "./screens/SecondScreen";
1919
import { KeyboardAvoidingView } from "react-native";
2020
import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view";
2121
import { createAppContainer } from "react-navigation";
2222
import { createStackNavigator } from "react-navigation-stack";
2323
import { AsyncStorage } from "react-native";
2424
import { BarCodeScanner } from "expo-barcode-scanner";
25-
import Scanner from "./Scanner";
26-
import BlankScreen from "./BlankScreen";
25+
import Scanner from "./screens/Scanner";
26+
import BlankScreen from "./screens/BlankScreen";
2727
import * as firebase from "firebase";
2828

2929
const userInfo = { username: "admin", password: "A" };
@@ -56,7 +56,7 @@ class LoginScreen extends Component {
5656

5757
<View style={styles.viewStyleForLine}></View>
5858

59-
<Image style={styles.arrow} source={require("./arrow.png")} />
59+
<Image style={styles.arrow} source={require("./assets/arrow.png")} />
6060

6161
<KeyboardAwareScrollView
6262
style={{ backgroundColor: "#fff" }}
@@ -65,13 +65,16 @@ class LoginScreen extends Component {
6565
scrollEnabled={false}
6666
>
6767
<View style={styles.imcontainer}>
68-
<Image style={styles.logo} source={require("./logo-unga.jpg")} />
68+
<Image
69+
style={styles.logo}
70+
source={require("./assets/logo-unga.jpg")}
71+
/>
6972
</View>
7073

7174
<Text style={styles.ur_text1}>USERNAME</Text>
7275

7376
<View style={styles.ur_input1}>
74-
<Image style={styles.ur_img1} source={require("./12.png")} />
77+
<Image style={styles.ur_img1} source={require("./assets/12.png")} />
7578
<TextInput
7679
style={styles.input}
7780
// placeholder="USERNAME"
@@ -84,7 +87,7 @@ class LoginScreen extends Component {
8487
<Text style={styles.ur_text2}>PASSWORD</Text>
8588

8689
<View style={styles.ur_input2}>
87-
<Image style={styles.ur_img2} source={require("./13.png")} />
90+
<Image style={styles.ur_img2} source={require("./assets/13.png")} />
8891

8992
<TextInput
9093
style={styles.input2}
@@ -105,13 +108,13 @@ class LoginScreen extends Component {
105108
<TouchableHighlight onPress={this._login_google}>
106109
<Image
107110
style={styles.icons_google}
108-
source={require("./google.png")}
111+
source={require("./assets/google.png")}
109112
/>
110113
</TouchableHighlight>
111114

112115
<Image
113116
style={styles.icons_facebook}
114-
source={require("./facebook.png")}
117+
source={require("./assets/facebook.png")}
115118
/>
116119
</View>
117120

BlankScreen.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
Button,
1010
TouchableOpacity,
1111
} from "react-native";
12-
import SecondScreen from "./SecondScreen";
12+
//import SecondScreen from "./SecondScreen";
1313
import firebase from "./dbConfig";
1414
import Modal from "react-native-modal";
1515

@@ -224,7 +224,7 @@ export default class ListItem extends Component {
224224
>
225225
<View style={styles.navBar_out_l}>
226226
<Image
227-
source={require("./cross.png")} //Change your icon image here
227+
source={require("./assets/cross.png")} //Change your icon image here
228228
style={styles.icon_bottom_1_2_4}
229229
/>
230230
<Text
@@ -237,7 +237,7 @@ export default class ListItem extends Component {
237237

238238
<View style={styles.navBar_in}>
239239
<Image
240-
source={require("./tick.png")} //Change your icon image here
240+
source={require("./assets/tick.png")} //Change your icon image here
241241
style={styles.icon_bottom_1_2_4}
242242
/>
243243
<Text
@@ -253,7 +253,7 @@ export default class ListItem extends Component {
253253
onPress={() => this.props.navigation.navigate("Scan")}
254254
>
255255
<Image
256-
source={require("./bar_c1.png")} //Change your icon image here
256+
source={require("./assets/bar_c1.png")} //Change your icon image here
257257
style={styles.icon_bottom_3}
258258
/>
259259
</TouchableHighlight>
@@ -267,7 +267,7 @@ export default class ListItem extends Component {
267267

268268
<View style={styles.navBar_in}>
269269
<Image
270-
source={require("./calci.png")} //Change your icon image here
270+
source={require("./assets/calci.png")} //Change your icon image here
271271
style={styles.icon_bottom_1_2_4}
272272
/>
273273
{/* </View> */}
@@ -277,7 +277,7 @@ export default class ListItem extends Component {
277277

278278
<View style={styles.navBar_out_r}>
279279
<Image
280-
source={require("./user_nav.png")} //Change your icon image here
280+
source={require("./assets/user_nav.png")} //Change your icon image here
281281
style={styles.icon_bottom_5}
282282
/>
283283
<Text style={styles.navText}>Photo Update</Text>

Header.js

+37-71
Original file line numberDiff line numberDiff line change
@@ -1,107 +1,73 @@
1+
"use strict";
2+
import { Text, StyleSheet, View, Image, Dimensions } from "react-native";
3+
import React from "react";
14

2-
'use strict';
3-
//import Colors from './Colors';
4-
// import type {Node} from 'react';
5-
import {Text, StyleSheet,View,Image,Dimensions} from 'react-native';
6-
import React from 'react';
7-
8-
const Header = ()=> (
9-
10-
<View style={styles.hcontainer}>
11-
12-
5+
const Header = () => (
6+
<View style={styles.hcontainer}>
137
<View style={styles.ur_login}>
14-
<Text style={styles.text}>Login</Text>
8+
<Text style={styles.text}>Login</Text>
159

16-
<Image
17-
style={styles.img_lang}
18-
source={require('./15s.png')}
19-
/>
20-
10+
<Image style={styles.img_lang} source={require("./assets/15s.png")} />
2111
</View>
2212

23-
24-
25-
26-
2713
<Text style={styles.text2}>Please login to your account.</Text>
28-
29-
30-
</View>
31-
14+
</View>
3215
);
3316

34-
const DEVICE_WIDTH = Dimensions.get('window').width;
17+
const DEVICE_WIDTH = Dimensions.get("window").width;
3518

3619
const styles = StyleSheet.create({
37-
38-
hcontainer: {
39-
40-
borderBottomColor: '#22abb6',
41-
backgroundColor: '#fff',
20+
hcontainer: {
21+
borderBottomColor: "#22abb6",
22+
backgroundColor: "#fff",
4223
// height: 100,
43-
marginTop: 28,
24+
marginTop: 28,
4425
},
4526

4627
background: {
4728
paddingBottom: 40,
4829
paddingTop: 96,
4930
paddingHorizontal: 32,
50-
backgroundColor: '#fff',
51-
borderColor: '#fff',
52-
borderBottomColor: '#22abb6',
31+
backgroundColor: "#fff",
32+
borderColor: "#fff",
33+
borderBottomColor: "#22abb6",
5334
},
54-
35+
5536
text: {
5637
fontSize: 32,
57-
fontWeight: '200',
58-
textAlign: 'left',
38+
fontWeight: "200",
39+
textAlign: "left",
5940
paddingTop: 20,
6041
marginLeft: 21,
6142

62-
color: '#22abb6',
43+
color: "#22abb6",
6344
},
6445

65-
66-
ur_login:{
46+
ur_login: {
6747
flex: 1,
68-
top: 0,
69-
70-
width: DEVICE_WIDTH,
71-
flexDirection: 'row',
72-
justifyContent: 'space-around',
73-
},
48+
top: 0,
49+
50+
width: DEVICE_WIDTH,
51+
flexDirection: "row",
52+
justifyContent: "space-around",
53+
},
7454

75-
img_lang:{
76-
77-
width:85,
78-
marginTop: 23,
79-
height:32,
80-
marginLeft: 150
81-
82-
},
55+
img_lang: {
56+
width: 85,
57+
marginTop: 23,
58+
height: 32,
59+
marginLeft: 150,
60+
},
8361
text2: {
8462
fontSize: 14,
85-
fontWeight: '300',
86-
textAlign: 'left',
63+
fontWeight: "300",
64+
textAlign: "left",
8765
paddingTop: 30,
8866
marginLeft: 21,
89-
paddingBottom: 25,
67+
paddingBottom: 25,
9068

91-
color: '#22abb6',
69+
color: "#22abb6",
9270
},
93-
94-
// text3: {
95-
// fontSize: 16,
96-
// fontWeight: '200',
97-
// textAlign: 'left',
98-
// paddingTop: 10,
99-
// marginLeft: 0,
100-
// width: '100%',
101-
102-
103-
// color: '#22abb6',
104-
// },
10571
});
10672

10773
export default Header;

SecondScreen.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ import {
1818
TouchableHighlight,
1919
} from "react-native";
2020

21-
import firebase from "./dbConfig";
21+
import firebase from "./screens/dbConfig";
2222

2323
// import { createAppContainer } from 'react-navigation';
2424
// import { createStackNavigator } from 'react-navigation-stack';
2525

26-
import Scanner from "./Scanner";
26+
import Scanner from "./screens/Scanner";
2727

2828
const DEVICE_HEIGHT = Dimensions.get("window").height;
2929

@@ -49,7 +49,7 @@ class SecondScreen extends Component {
4949
<View style={styles.BackGround}>
5050
<View style={styles.SectionStyle}>
5151
<Image
52-
source={require("./mic.png")} //Change your icon image here
52+
source={require("./assets/mic.png")} //Change your icon image here
5353
style={styles.ImageStyle}
5454
/>
5555

@@ -70,7 +70,7 @@ class SecondScreen extends Component {
7070
//onSubmitEditing={()=>this.componentWillMount}
7171
/>
7272
<Image
73-
source={require("./usr.png")} //Change your icon image here
73+
source={require("./assets/usr.png")} //Change your icon image here
7474
style={styles.ImageStyle2}
7575
/>
7676
</View>
@@ -139,7 +139,7 @@ class SecondScreen extends Component {
139139
>
140140
<View style={styles.navBar_out_l}>
141141
<Image
142-
source={require("./cross.png")} //Change your icon image here
142+
source={require("./assets/cross.png")} //Change your icon image here
143143
style={styles.icon_bottom_1_2_4}
144144
/>
145145
<Text
@@ -152,7 +152,7 @@ class SecondScreen extends Component {
152152

153153
<View style={styles.navBar_in}>
154154
<Image
155-
source={require("./tick.png")} //Change your icon image here
155+
source={require("./assets/tick.png")} //Change your icon image here
156156
style={styles.icon_bottom_1_2_4}
157157
/>
158158
<Text
@@ -168,7 +168,7 @@ class SecondScreen extends Component {
168168
onPress={() => this.props.navigation.navigate("Scan")}
169169
>
170170
<Image
171-
source={require("./bar_c1.png")} //Change your icon image here
171+
source={require("./assets/bar_c1.png")} //Change your icon image here
172172
style={styles.icon_bottom_3}
173173
/>
174174
</TouchableHighlight>
@@ -182,7 +182,7 @@ class SecondScreen extends Component {
182182

183183
<View style={styles.navBar_in}>
184184
<Image
185-
source={require("./calci.png")} //Change your icon image here
185+
source={require("./assets/calci.png")} //Change your icon image here
186186
style={styles.icon_bottom_1_2_4}
187187
/>
188188

@@ -191,7 +191,7 @@ class SecondScreen extends Component {
191191

192192
<View style={styles.navBar_out_r}>
193193
<Image
194-
source={require("./user_nav.png")} //Change your icon image here
194+
source={require("./assets/user_nav.png")} //Change your icon image here
195195
style={styles.icon_bottom_5}
196196
/>
197197
<Text style={styles.navText}>Photo Update</Text>

app.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
{
22
"expo": {
33
"name": "Mpertz-unga",
4-
"icon": "./assets/icon.png",
4+
"icon": "./assets/app_icon.png",
55
"version": "1.0.0",
66
"slug": "your-app-slug",
77
"android": {
88
"package": "com.mxpertz.unga",
9-
"permissions": [
10-
"CAMERA"
11-
]
9+
"permissions": ["CAMERA"]
1210
}
1311
}
1412
}

12.png assets/12.png

File renamed without changes.

13.png assets/13.png

File renamed without changes.

14s.png assets/14s.png

File renamed without changes.

15s.png assets/15s.png

File renamed without changes.
File renamed without changes.

arrow.png assets/arrow.png

File renamed without changes.

bar_c.png assets/bar_c.png

File renamed without changes.

bar_c1.png assets/bar_c1.png

File renamed without changes.

bar_code.png assets/bar_code.png

File renamed without changes.

calci.png assets/calci.png

File renamed without changes.

cross.png assets/cross.png

File renamed without changes.

facebook.png assets/facebook.png

File renamed without changes.

google.png assets/google.png

File renamed without changes.

logo-unga.jpg assets/logo-unga.jpg

File renamed without changes.

mic.png assets/mic.png

File renamed without changes.

tick.png assets/tick.png

File renamed without changes.

user_nav.png assets/user_nav.png

File renamed without changes.

usr.png assets/usr.png

File renamed without changes.

icon.jpg

-15.2 KB
Binary file not shown.

icon.png

-71.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)