-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeedPhaseScreen.js
More file actions
59 lines (52 loc) · 1.12 KB
/
Copy pathSeedPhaseScreen.js
File metadata and controls
59 lines (52 loc) · 1.12 KB
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
import React from 'react';
import { StyleSheet, View, Text, StatusBar, Image } from 'react-native';
import { Button } from 'react-native';
import { YellowBox } from 'react-native-web';
export default function SeedScreen ({navigation}) {
return(
<View style={styles.container}>
<StatusBar style="auto" />
</View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#fff',
alignItems: 'center',
},
buttonContainer:{
margin:20
},
bannerImage: {
width: '70%',
height: '70%',
resizeMode: 'contain'
},
chImage: {
width: '68%',
height: '68%',
resizeMode: 'contain'
},
content: {
flex: 1,
justifyContent: 'center',
alignItems: 'left',
alignSelf: 'center'
},
mainText: {
fontSize: 20,
fontWeight: 'bold',
textAlign: 'center'
},
helpText: {
fontSize: 16,
textAlign: 'center',
marginTop: 10
},
hintText: {
fontSize: 16,
marginTop: 15
}
});