blazerapp/app/styles/morestyles.js

21 lines
387 B
JavaScript
Raw Normal View History

2020-08-09 20:56:12 -04:00
import {StyleSheet, Dimensions} from 'react-native';
const styles=StyleSheet.create({
moreitem: {
backgroundColor:'red',
2020-08-09 21:27:58 -04:00
borderBottomColor:'white',
borderBottomWidth:0.5,
2020-08-09 20:56:12 -04:00
height: Dimensions.get('window').height*0.075,
justifyContent:'center'
},
moretext: {
color:'#eee',
fontSize:20,
},
headerTitle: {
fontWeight:'bold',
fontSize:24
}
});
export default styles;