personal_center_css.js 831 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_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: 74,
  18. height: 74,
  19. margin: 10,
  20. borderRadius: 50,
  21. borderWidth: 1,
  22. borderColor: '#ffffff',
  23. },
  24. textListStyle: {
  25. marginTop: 10,
  26. backgroundColor: '#FFFFFF',
  27. height: 40,
  28. },
  29. textListFontStyle: {
  30. fontSize: 15,
  31. textAlign: 'center',
  32. paddingTop: 15,
  33. },
  34. });
  35. export default personal_center_css;