personal_center_page_css.js 793 B

123456789101112131415161718192021222324252627282930313233343536
  1. import React from 'react';
  2. import {StyleSheet} from 'react-native';
  3. import {Dimensions} from 'react-native';
  4. const screenWidth = Math.round(Dimensions.get('window').width);
  5. const screenHeight = Math.round(Dimensions.get('window').height);
  6. const personal_center_page_css = StyleSheet.create({
  7. headStyle: {
  8. display: 'flex',
  9. justifyContent: 'center',
  10. alignItems: 'center',
  11. backgroundColor: '#ffffff',
  12. height: 50,
  13. position: 'relative',
  14. top: 50,
  15. },
  16. headImg: {
  17. width: 90,
  18. height: 90,
  19. margin: 30,
  20. borderRadius: 50,
  21. },
  22. textListStyle: {
  23. marginTop: 10,
  24. backgroundColor: '#FFFFFF',
  25. height: 40,
  26. },
  27. textListFontStyle: {
  28. fontSize: 15,
  29. textAlign: 'center',
  30. paddingTop: 15,
  31. },
  32. });
  33. export default personal_center_page_css;