-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
119 lines (99 loc) · 1.92 KB
/
index.android.js
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
TouchableOpacity,
TouchableHighlight,
Text,
View,
Image,
ScrollView,
ListView
} from 'react-native';
import { Scene, Router, TabBar, Modal, Schema, Actions, Reducer, ActionConst } from 'react-native-router-flux';
import GypsyMain from './components/android/gypsymain';
import Profile from './components/android/profile';
import Main from './components/android/main';
class philtatoo extends Component {
render() {
return (
<Router>
<Scene key="root" hideNavBar={true}>
<Scene key="main" component={Main} title="Gypsy" initial={true} />
<Scene key="profile" component={Profile} title="profile" />
</Scene>
</Router>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1
},
contentContainer: {
height: 200,
},
suboptions: {
flex: 1,
backgroundColor: 'black',
flexDirection: 'row',
height: 50,
padding: 10
},
subbutton: {
height: 30,
width: 30,
},
ficon: {
height: 20,
width: 20,
},
imgitems: {
height: 200,
},
profilep: {
height: 40,
width: 40,
borderRadius: 20,
},
profileView: {
paddingTop: 6,
paddingBottom: 6,
paddingRight: 10,
flex: 1,
alignItems: 'flex-end'
},
hearty: {
paddingTop: 10,
paddingLeft: 8
},
forumicon: {
paddingTop: 15,
paddingLeft: 15,
paddingRight: 15
},
namez: {
fontSize: 15,
color: 'white'
},
subheart: {
height: 50,
position: 'absolute'
},
subimg: {
position: 'absolute'
},
subrow: {
flex: 1,
flexDirection: 'row',
backgroundColor: '#212121',
opacity: .95,
},
contentPic: {
},
mainpic: {
top: 1
}
});
AppRegistry.registerComponent('philtatoo', () => philtatoo);