|
@@ -1,53 +1,104 @@
|
1
|
1
|
/**
|
2
|
|
- * Sample React Native App
|
3
|
|
- * https://github.com/facebook/react-native
|
4
|
|
- * @flow
|
5
|
|
- */
|
|
2
|
+* Sample React Native App
|
|
3
|
+* https://github.com/facebook/react-native
|
|
4
|
+* @flow
|
|
5
|
+*/
|
6
|
6
|
|
7
|
7
|
import React, { Component } from 'react';
|
8
|
8
|
import {
|
9
|
|
- AppRegistry,
|
10
|
|
- StyleSheet,
|
11
|
|
- Text,
|
12
|
|
- View
|
|
9
|
+ AppRegistry,
|
|
10
|
+ StyleSheet,
|
|
11
|
+ Text,
|
|
12
|
+ View,
|
|
13
|
+ Image,
|
|
14
|
+ TextInput
|
13
|
15
|
} from 'react-native';
|
|
16
|
+import {
|
|
17
|
+ InputGroup,
|
|
18
|
+ Input,
|
|
19
|
+ Button
|
|
20
|
+} from 'native-base';
|
14
|
21
|
|
15
|
22
|
export default class app extends Component {
|
16
|
|
- render() {
|
17
|
|
- return (
|
18
|
|
- <View style={styles.container}>
|
19
|
|
- <Text style={styles.welcome}>
|
20
|
|
- Welcome to React Native!
|
21
|
|
- </Text>
|
22
|
|
- <Text style={styles.instructions}>
|
23
|
|
- To get started, edit index.android.js
|
24
|
|
- </Text>
|
25
|
|
- <Text style={styles.instructions}>
|
26
|
|
- Double tap R on your keyboard to reload,{'\n'}
|
27
|
|
- Shake or press menu button for dev menu
|
28
|
|
- </Text>
|
29
|
|
- </View>
|
30
|
|
- );
|
31
|
|
- }
|
|
23
|
+ render() {
|
|
24
|
+ return (
|
|
25
|
+ <View style={styles.container}>
|
|
26
|
+ <Image
|
|
27
|
+ source={require('./images/logo@1x.png')}
|
|
28
|
+ />
|
|
29
|
+ <Text style={styles.companyName}>
|
|
30
|
+ Future Message Service
|
|
31
|
+ </Text>
|
|
32
|
+ <View style={styles.main}>
|
|
33
|
+ <InputGroup borderType="regular" style={styles.account}>
|
|
34
|
+ <Input placeholder="Email"/>
|
|
35
|
+ </InputGroup>
|
|
36
|
+ <InputGroup borderType="regular" style={styles.password}>
|
|
37
|
+ <Input placeholder="Password"/>
|
|
38
|
+ </InputGroup>
|
|
39
|
+ <Button transparent>
|
|
40
|
+ <Text style={styles.signup}>
|
|
41
|
+ Sign Up
|
|
42
|
+ </Text>
|
|
43
|
+ </Button>
|
|
44
|
+ <Button block style={styles.login}>
|
|
45
|
+ Login !
|
|
46
|
+ </Button>
|
|
47
|
+ </View>
|
|
48
|
+
|
|
49
|
+ <View style={styles.forgot}>
|
|
50
|
+ <Button transparent>
|
|
51
|
+ <Text style={styles.signup}>
|
|
52
|
+ Forgot password ?
|
|
53
|
+ </Text>
|
|
54
|
+ </Button>
|
|
55
|
+ </View>
|
|
56
|
+ </View>
|
|
57
|
+ );
|
|
58
|
+ }
|
32
|
59
|
}
|
33
|
60
|
|
34
|
61
|
const styles = StyleSheet.create({
|
35
|
|
- container: {
|
36
|
|
- flex: 1,
|
37
|
|
- justifyContent: 'center',
|
38
|
|
- alignItems: 'center',
|
39
|
|
- backgroundColor: '#F5FCFF',
|
40
|
|
- },
|
41
|
|
- welcome: {
|
42
|
|
- fontSize: 20,
|
43
|
|
- textAlign: 'center',
|
44
|
|
- margin: 10,
|
45
|
|
- },
|
46
|
|
- instructions: {
|
47
|
|
- textAlign: 'center',
|
48
|
|
- color: '#333333',
|
49
|
|
- marginBottom: 5,
|
50
|
|
- },
|
|
62
|
+ container: {
|
|
63
|
+ flex: 1,
|
|
64
|
+ justifyContent: 'center',
|
|
65
|
+ alignItems: 'center',
|
|
66
|
+ backgroundColor: '#FFFFFF',
|
|
67
|
+ },
|
|
68
|
+ companyName: {
|
|
69
|
+ fontSize: 20,
|
|
70
|
+ textAlign: 'center',
|
|
71
|
+ margin: 10,
|
|
72
|
+ },
|
|
73
|
+ main: {
|
|
74
|
+ marginTop: 40,
|
|
75
|
+ width: 250
|
|
76
|
+ },
|
|
77
|
+ account: {
|
|
78
|
+ borderBottomColor: 'transparent',
|
|
79
|
+ borderTopLeftRadius: 4,
|
|
80
|
+ borderTopRightRadius: 4
|
|
81
|
+ },
|
|
82
|
+ password: {
|
|
83
|
+ borderBottomLeftRadius: 4,
|
|
84
|
+ borderBottomRightRadius: 4
|
|
85
|
+ },
|
|
86
|
+ signup: {
|
|
87
|
+ fontSize: 14,
|
|
88
|
+ textAlign: 'left',
|
|
89
|
+ color: '#2987CD'
|
|
90
|
+ },
|
|
91
|
+ login: {
|
|
92
|
+ marginTop: 25,
|
|
93
|
+ backgroundColor: '#2987CD'
|
|
94
|
+ },
|
|
95
|
+ forgot: {
|
|
96
|
+ position: 'absolute',
|
|
97
|
+ left: 10,
|
|
98
|
+ right: 0,
|
|
99
|
+ bottom: 10,
|
|
100
|
+ flexDirection:'row'
|
|
101
|
+ }
|
51
|
102
|
});
|
52
|
103
|
|
53
|
104
|
AppRegistry.registerComponent('app', () => app);
|