-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome.js
93 lines (87 loc) · 2.19 KB
/
Home.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
// log-in screen
import React ,{Component} from 'react';
import { StyleSheet, Text, View, Image,Dimensions, StatusBar, ScrollView,TouchableWithoutFeedback,TouchableOpacity,ImageBackground,Modal,TouchableHighlight } from 'react-native';
import AppIntroSlider from 'react-native-app-intro-slider';
const slides = [
{
key: 'somethun',
title: 'Josostagram',
// text: 'Jyosostagram',
image: require('./assets/welcome1.jpg'),
backgroundColor: '#59b2ab',
},
{
key: 'somethun-dos',
// title: 'Title 2',
text: 'まずは会員登録',
image: require('./assets/welcome1.jpg'),
backgroundColor: '#febe29',
},
{
key: 'somethun1',
// title: 'Rocket guy',
text: '写真をシェア',
image: require('./assets/welcome1.jpg'),
backgroundColor: '#22bcb5',
}
];
class Home extends React.Component {
state = {
showRealApp: false,
fontLoaded: false,
}
// static navigationOptions = {
// header: null
// }
render() {
if (this.state.showRealApp) {
return <Timeline />;
} else {
return <AppIntroSlider renderItem={this._renderItem} slides={slides} onDone={this._onDone}/>;
}
}
}
const styles = StyleSheet.create({
welcomeImages:{
height: Dimensions.get('window').height,
width: Dimensions.get('window').width,
resizeMode: 'cover',
zIndex: 0,
position: 'relative',
},
title:{
alignItems: 'center',
justifyContent: 'center',
color: 'pink',
zIndex: 2,
fontSize:40,
position: 'absolute',
textAlign: 'center',
textAlignVertical: "center",
top:'35%',
left:'30%',
// fontFamily:'insta-font'
},
text:{
position: 'absolute',
height: Dimensions.get('window').height,
width: Dimensions.get('window').width,
backgroundColor:'rgba(0,0,0,0.6)',
},
slide:{
backgroundColor:'rgba(0,0,0,0.6)',
},
image:{
resizeMode: 'contain',
},
carousel:{
// borderRadius:10,
},
storyEnd:{
width:100,
height:100,
backgroundColor:"gray"
}
}
);
export default Home;