notice_css.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import React from 'react';
  2. import {Dimensions, StyleSheet} from 'react-native';
  3. const notice_css = StyleSheet.create({
  4. content: {
  5. fontSize: 15,
  6. color: 'black',
  7. },
  8. container: {
  9. backgroundColor: 'white',
  10. flex: 1,
  11. },
  12. itemTop: {
  13. fontSize: 16,
  14. fontWeight: '600',
  15. textAlign: 'center',
  16. },
  17. itemView: {
  18. flexDirection: 'row',
  19. margin: 5,
  20. justifyContent: 'space-between',
  21. },
  22. itemViewName: {
  23. fontSize: 14,
  24. justifyContent: 'flex-start',
  25. flex: 1,
  26. },
  27. itemViewText: {
  28. fontSize: 14,
  29. color: '#1E90FF',
  30. },
  31. //列表样式
  32. list_view: {
  33. flexDirection: 'row',
  34. justifyContent: 'space-around',
  35. // width: Dimensions.get('window').width,
  36. marginTop: 10,
  37. },
  38. list_title_text: {
  39. width: 70,
  40. textAlign: 'center',
  41. justifyContent: 'center',
  42. },
  43. list_item_text: {
  44. width: 70,
  45. textAlign: 'center',
  46. },
  47. footer: {
  48. flexDirection: 'row',
  49. height: 24,
  50. justifyContent: 'center',
  51. alignItems: 'center',
  52. marginBottom: 10,
  53. },
  54. });
  55. export default notice_css;