2020-08-09 20:56:12 -04:00
|
|
|
import {StyleSheet, Dimensions} from 'react-native';
|
2020-10-18 20:47:15 -04:00
|
|
|
import LinearGradient from 'react-native-linear-gradient';
|
2020-08-09 20:56:12 -04:00
|
|
|
|
|
|
|
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,
|
2020-10-18 22:53:27 -04:00
|
|
|
justifyContent:'center',
|
|
|
|
paddingLeft: '3%',
|
2020-10-20 23:12:33 -04:00
|
|
|
fontSize: 32,
|
2020-08-09 20:56:12 -04:00
|
|
|
},
|
|
|
|
moretext: {
|
|
|
|
color:'#eee',
|
|
|
|
fontSize:20,
|
|
|
|
},
|
|
|
|
headerTitle: {
|
2020-10-18 22:53:27 -04:00
|
|
|
fontWeight: 'bold',
|
|
|
|
fontSize:24,
|
2020-10-07 13:13:47 -04:00
|
|
|
},
|
|
|
|
resourceContainer: {
|
|
|
|
alignItems: 'center',
|
|
|
|
marginTop: '3%',
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
height: 100,
|
|
|
|
width: 400,
|
|
|
|
borderTopRightRadius: 16,
|
|
|
|
borderTopLeftRadius: 16,
|
|
|
|
},
|
|
|
|
textContainer: {
|
|
|
|
backgroundColor: 'black',
|
|
|
|
width: 400,
|
|
|
|
borderBottomLeftRadius: 16,
|
|
|
|
borderBottomRightRadius: 16,
|
|
|
|
},
|
|
|
|
resourceText: {
|
|
|
|
fontWeight: 'bold',
|
|
|
|
color: 'white',
|
|
|
|
fontSize:32,
|
|
|
|
textAlign:'center',
|
|
|
|
},
|
2020-10-18 20:47:15 -04:00
|
|
|
openPage: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
|
|
|
linearGradient: {
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
borderRadius: 5,
|
|
|
|
height: '100%',
|
|
|
|
width: '100%',
|
2020-10-18 22:53:27 -04:00
|
|
|
},
|
|
|
|
tabBarIcon: {
|
|
|
|
height: 50,
|
|
|
|
width: 50,
|
2020-10-18 20:47:15 -04:00
|
|
|
}
|
2020-08-09 20:56:12 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export default styles;
|