buyer_invoice_css.js 722 B

123456789101112131415161718192021222324252627282930313233343536
  1. import React from 'react';
  2. import {Dimensions, PixelRatio, StyleSheet} from 'react-native';
  3. const buyer_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. footer: {
  21. flexDirection: 'row',
  22. height: 24,
  23. justifyContent: 'center',
  24. alignItems: 'center',
  25. marginBottom: 10,
  26. },
  27. actionButtonIcon: {
  28. fontSize: 20,
  29. height: 22,
  30. color: 'white',
  31. },
  32. });
  33. export default buyer_invoice_css;