index.dart 3.2KB

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