Added more screen

This commit is contained in:
M10T
2020-08-09 20:56:12 -04:00
parent 4e62459760
commit 199e2591ba
8 changed files with 227 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
import {StyleSheet, Dimensions} from 'react-native';
const styles=StyleSheet.create({
moreitem: {
backgroundColor:'red',
borderColor:'white',
borderWidth:0.5,
height: Dimensions.get('window').height*0.075,
justifyContent:'center'
},
moretext: {
color:'#eee',
fontSize:20,
},
headerTitle: {
fontWeight:'bold',
fontSize:24
}
});
export default styles;