-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
41 lines (39 loc) · 1.06 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
import {StyleSheet} from "react-native";
import {responsiveFontSize, responsiveHeight, responsiveWidth} from "react-native-responsive-dimensions";
import Colors from "./constants/Colors";
export const styles = StyleSheet.create({
container:{
flex:1,
backgroundColor:'#fff',
},
controlContainer:{
flex:1,
alignSelf:'stretch',
flexDirection:'row',
justifyContent:'space-between',
paddingHorizontal:responsiveWidth(6),
alignItems:'center',
},
songContainer:{
flexDirection: 'row',
},
albumArt:{
width:responsiveHeight(7),
height:responsiveHeight(7),
borderRadius: responsiveHeight(1),
marginRight:responsiveWidth(5),
},
infoContainer:{
justifyContent: 'center',
},
songTitle:{
fontFamily:'fira-regular',
fontSize:responsiveFontSize(2.3),
marginBottom:responsiveHeight(0.3),
},
albumText:{
fontFamily:'fira-regular',
color:Colors.greyColor,
fontSize:responsiveFontSize(1.7),
}
});