invoice_css.js 491 B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import {Dimensions, PixelRatio, StyleSheet} from 'react-native';
  3. const invoice_css = StyleSheet.create({
  4. //列表样式
  5. list_view: {
  6. flexDirection: 'row',
  7. justifyContent: 'space-around',
  8. // width: Dimensions.get('window').width,
  9. marginTop: 10,
  10. },
  11. list_title_text: {
  12. width: 70,
  13. textAlign: 'center',
  14. justifyContent: 'center',
  15. },
  16. list_item_text: {
  17. width: 70,
  18. textAlign: 'center',
  19. },
  20. });
  21. export default invoice_css;