-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.js
79 lines (72 loc) · 1.66 KB
/
Styles.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
import { StyleSheet, Dimensions } from "react-native";
const HEIGHT = Math.round(Dimensions.get('window').height);
const WIDTH = Math.round(Dimensions.get('window').width);
const styles = StyleSheet.create({
container: {
flex:1,
},
contentTop: {
height:HEIGHT/3.5, width:WIDTH,
},
image: {
flex: 1,
width:WIDTH,
},
topIconContainer: {
flexDirection:'row',
justifyContent:'space-between'
},
contentBottom: {
flex:1,
backgroundColor: '#181b32',
height:HEIGHT - HEIGHT/3,
width:WIDTH,
alignItems:'center',
justifyContent:'flex-end'
},
containerRunningTime: {
flexDirection:'row',
justifyContent:'space-between',
alignItems:'center',
marginTop:0 ,
minHeight:60,
minWidth:WIDTH/1.1,
flexWrap:'wrap'
},
containerSliderBox:{
minWidth:WIDTH/1.2,
marginTop:WIDTH/10
},
trackName: {
fontWeight:'bold',
fontSize:30,
color:'#deddeb',
},
artistName: {
fontSize:20,
color:'#deddeb',
backgroundColor:'rgba(0,0,0,0.5)',
},
controllerBox: {
flex:2,
flexDirection:'row',
justifyContent:'space-between',
alignItems:'center',
width:WIDTH/1.2,
},
containerTabNavigation:{
flex:1,
width:WIDTH,
maxHeight:HEIGHT/12,
borderRadius:10,
backgroundColor:'#fff',
bottom:0
},
item:{
backgroundColor: '#f9c2ff',
padding: 20,
marginVertical: 8,
marginHorizontal: 16,
}
});
export default styles;