import React from 'react'; import {StyleSheet} from 'react-native'; import {Dimensions} from 'react-native'; const screenWidth = Math.round(Dimensions.get('window').width); const screenHeight = Math.round(Dimensions.get('window').height); const personal_center_css = StyleSheet.create({ headStyle: { display: 'flex', justifyContent: 'center', alignItems: 'center', backgroundColor: '#ffffff', height: 50, position: 'relative', top: 50, }, headImg: { width: 74, height: 74, margin: 10, borderRadius: 50, borderWidth: 1, borderColor: '#ffffff', }, textListStyle: { marginTop: 10, backgroundColor: '#FFFFFF', height: 40, }, textListFontStyle: { fontSize: 15, textAlign: 'center', paddingTop: 15, }, }); export default personal_center_css;