index.dart 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. class AboutUs extends StatelessWidget {
  4. const AboutUs({Key? key}) : super(key: key);
  5. @override
  6. Widget build(BuildContext context) {
  7. return Scaffold(
  8. appBar: AppBar(
  9. elevation: 0,
  10. centerTitle: true,
  11. backgroundColor: Colors.white,
  12. title: Text(
  13. '关于我们',
  14. style: TextStyle(
  15. color: Colors.black,
  16. fontSize: 17.sp,
  17. letterSpacing: 2,
  18. fontWeight: FontWeight.bold),
  19. ),
  20. ),
  21. body: Container(
  22. color: const Color(0xFFFFFFFF),
  23. padding: EdgeInsets.all(15.w),
  24. child: Column(
  25. children: [
  26. Container(
  27. margin: EdgeInsets.fromLTRB(0, 0, 0, 30.h),
  28. child: Row(
  29. mainAxisAlignment: MainAxisAlignment.center,
  30. children: [
  31. Image(
  32. image: const AssetImage('images/icons/decorate.png'),
  33. width: 16.5.w),
  34. Text(
  35. '智慧农机的介绍',
  36. style: TextStyle(
  37. fontSize: 20.sp,
  38. fontWeight: FontWeight.bold,
  39. color: const Color(0xFF222222)),
  40. ),
  41. Image(
  42. image: const AssetImage('images/icons/decorate.png'),
  43. width: 16.5.w),
  44. ],
  45. ),
  46. ),
  47. Text(
  48. ' 智慧农机旨在通过新一代物联网,大数据,3S等信息化技术有效整合省市县各级涉农资源',
  49. style: TextStyle(
  50. color: Color(0xFF121212),
  51. fontSize: 15.sp,
  52. letterSpacing: 2,
  53. height: 2),
  54. ),
  55. Text(
  56. ' 以顶层设计方式建成“一个平台一个中心N个应用”汇聚农业产业。农业“两区”。',
  57. style: TextStyle(
  58. color: Color(0xFF121212),
  59. fontSize: 15.sp,
  60. letterSpacing: 2,
  61. height: 2),
  62. ),
  63. Text(
  64. ' 物联网、植保、农机、畜牧、农资、农经,科教等各级农业业务应用及数据,形成大农业”数据中心。',
  65. style: TextStyle(
  66. color: Color(0xFF121212),
  67. fontSize: 15.sp,
  68. letterSpacing: 2,
  69. height: 2),
  70. ),
  71. Text(
  72. ' 构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。',
  73. style: TextStyle(
  74. color: Color(0xFF121212),
  75. fontSize: 15.sp,
  76. letterSpacing: 2,
  77. height: 2),
  78. ),
  79. Text(
  80. ' 智慧农机旨在通过新一代物联网,大数据,3S等信息化技术有效整合省市县各级涉农资源',
  81. style: TextStyle(
  82. color: Color(0xFF121212),
  83. fontSize: 15.sp,
  84. letterSpacing: 2,
  85. height: 2),
  86. ),
  87. Text(
  88. ' 以顶层设计方式建成“一个平台一个中心N个应用”汇聚农业产业。农业“两区”。',
  89. style: TextStyle(
  90. color: Color(0xFF121212),
  91. fontSize: 15.sp,
  92. letterSpacing: 2,
  93. height: 2),
  94. ),
  95. ],
  96. ),
  97. ),
  98. );
  99. }
  100. }