-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPost.js
72 lines (63 loc) · 1.86 KB
/
Post.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
import React ,{Component} from 'react';
import { StyleSheet, Text, View, Image,Dimensions, StatusBar, ScrollView,TouchableWithoutFeedback,TouchableOpacity,ImageBackground,Modal,TouchableHighlight } from 'react-native';
import { Header,Icon,SearchBar,Input,Button } from 'react-native-elements';
import Carousel from 'react-native-snap-carousel';
import { createStackNavigator, createAppContainer, createBottomTabNavigator,createMaterialTopTabNavigator } from "react-navigation";
import { LinearGradient } from 'expo-linear-gradient';
class Post extends React.Component {
// TODO プロフィールからのみの遷移へ変更
render() {
const {navigate} = this.props.navigation;
return (
<LinearGradient
colors={['#ddd6f3', '#faaca8']}
style={{ padding: 15, alignItems: 'center', borderRadius: 5 }}>
<View style={{height:'100%'}}></View>
</LinearGradient>
)
}
}
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 Post;