import React from 'react'; import {Dimensions, PixelRatio, StyleSheet} from 'react-native'; const buyer_invoice_css = StyleSheet.create({ //列表样式 list_view: { flexDirection: 'row', justifyContent: 'space-around', // width: Dimensions.get('window').width, marginTop: 10, }, list_title_text: { width: 70, textAlign: 'center', justifyContent: 'center', }, list_item_text: { width: 70, textAlign: 'center', }, footer: { flexDirection: 'row', height: 24, justifyContent: 'center', alignItems: 'center', marginBottom: 10, }, actionButtonIcon: { fontSize: 20, height: 22, color: 'white', }, }); export default buyer_invoice_css;