import React from 'react'; import {Dimensions, StyleSheet} from 'react-native'; const notice_css = StyleSheet.create({ content: { fontSize: 15, color: 'black', }, container: { backgroundColor: 'white', flex: 1, }, itemTop: { fontSize: 16, fontWeight: '600', textAlign: 'center', }, itemView: { flexDirection: 'row', margin: 5, justifyContent: 'space-between', }, itemViewName: { fontSize: 14, justifyContent: 'flex-start', flex: 1, }, itemViewText: { fontSize: 14, color: '#1E90FF', }, //列表样式 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, }, }); export default notice_css;