李志伟 3 yıl önce
ebeveyn
işleme
f841a40218

+ 76
- 0
lib/pages/aboutUs/index.dart Dosyayı Görüntüle

@@ -0,0 +1,76 @@
1
+import 'package:flutter/cupertino.dart';
2
+import 'package:flutter/material.dart';
3
+import 'package:flutter/src/widgets/framework.dart';
4
+import 'package:flutter_screenutil/flutter_screenutil.dart';
5
+import 'package:worker_client/widgets/layout/BasicPage.dart';
6
+
7
+class AboutUs extends BasicPage {
8
+  @override
9
+  Widget builder(BuildContext context) {
10
+    naviTitle = '关于我们';
11
+    return ListView(
12
+      children: [
13
+        Container(
14
+            margin: EdgeInsets.symmetric(vertical: 25.h, horizontal: 15.w),
15
+            child: Column(
16
+              crossAxisAlignment: CrossAxisAlignment.start,
17
+              children: [
18
+                Container(
19
+                  margin: EdgeInsets.only(bottom: 30.h),
20
+                  child: Row(
21
+                    mainAxisAlignment: MainAxisAlignment.center,
22
+                    children: [
23
+                      Image.asset(
24
+                        'images/machinery/mIcon.png',
25
+                        width: 16.5.w,
26
+                      ),
27
+                      Container(
28
+                        margin: EdgeInsets.symmetric(horizontal: 15.5.w),
29
+                        child: Text(
30
+                          '智慧农机的介绍',
31
+                          style: TextStyle(
32
+                              fontSize: 20.sp,
33
+                              fontWeight: FontWeight.bold,
34
+                              color: const Color(0xFF222222),
35
+                              height: 1.1),
36
+                        ),
37
+                      ),
38
+                      Image.asset(
39
+                        'images/machinery/mIcon.png',
40
+                        width: 16.5.w,
41
+                      ),
42
+                    ],
43
+                  ),
44
+                ),
45
+                Text(
46
+                  //利用模板字符串不会去除缩进原则增加空格来渲染出首行缩进效果
47
+                  '       智慧农机旨在通过新一代物联网,大数据,3S等信息化技术有效整合省市县各级涉农资源',
48
+                  style: TextStyle(
49
+                      fontSize: 15.sp, color: Color(0xff121212), height: 2.4),
50
+                ),
51
+                Text(
52
+                  '       以顶层设计方式建成“一个平台一个中心N个应用”汇聚农业产业。农业“两区”。 ',
53
+                  style: TextStyle(
54
+                      fontSize: 15.sp, color: Color(0xff121212), height: 2.4),
55
+                ),
56
+                Text(
57
+                  '       物联网、植保、农机、畜牧、农资、农经,科教等各级农业业务应用及数据,形成大农业”数据中心。',
58
+                  style: TextStyle(
59
+                      fontSize: 15.sp, color: Color(0xff121212), height: 2.4),
60
+                ),
61
+                Text(
62
+                  '       构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。',
63
+                  style: TextStyle(
64
+                      fontSize: 15.sp, color: Color(0xff121212), height: 2.4),
65
+                ),
66
+                Text(
67
+                  '       ----------',
68
+                  style: TextStyle(
69
+                      fontSize: 15.sp, color: Color(0xff121212), height: 2.4),
70
+                )
71
+              ],
72
+            )),
73
+      ],
74
+    );
75
+  }
76
+}

+ 1
- 0
lib/pages/index.dart Dosyayı Görüntüle

@@ -11,4 +11,5 @@ export 'machineryMap/index.dart';
11 11
 export 'bankList/index.dart';
12 12
 export 'addBankCard/index.dart';
13 13
 export 'userInfo/index.dart';
14
+export 'aboutUs/index.dart';
14 15
 

+ 4
- 1
lib/pages/main/index.dart Dosyayı Görüntüle

@@ -44,6 +44,9 @@ class Main extends BasicPage {
44 44
   void goUserInfo(){
45 45
     Get.toNamed('/userInfo');
46 46
   }
47
+  void goAboutUs(){
48
+    Get.toNamed('/aboutUs');
49
+  }
47 50
 
48 51
   @override
49 52
   Widget builder(BuildContext context) {
@@ -264,7 +267,7 @@ class Main extends BasicPage {
264 267
                             'images/main/goto.png',
265 268
                             width: 10.w,
266 269
                           ),
267
-                          onClick: () {},
270
+                          onClick: () {goAboutUs();},
268 271
                         ),
269 272
                         MyCell(
270 273
                           head: Image.asset(

+ 3
- 1
lib/pages/userInfo/index.dart Dosyayı Görüntüle

@@ -36,6 +36,7 @@ class UserInfo extends BasicPage {
36 36
       Fluttertoast.showToast(msg: '请输入正确的手机号');
37 37
       return;
38 38
     } else {
39
+
39 40
       updateInfo(store.user().personId.toString(), {
40 41
         ...store.user().toJson(),
41 42
         'nickName': name,
@@ -43,7 +44,7 @@ class UserInfo extends BasicPage {
43 44
       }).then((value) {
44 45
         Fluttertoast.showToast(msg: '修改成功');
45 46
         store.user(Person.fromJson(value));
46
-        Get.offNamed('/main');
47
+        Get.offAllNamed('/main');
47 48
       });
48 49
     }
49 50
   }
@@ -244,6 +245,7 @@ class UserInfo extends BasicPage {
244 245
               ],
245 246
             ),
246 247
           ),
248
+
247 249
           const Spacer(),
248 250
           MyButton(
249 251
               text: '保存',

+ 1
- 0
lib/routes/pages.dart Dosyayı Görüntüle

@@ -22,4 +22,5 @@ List<GetPage> pages=[
22 22
   GetPage(name: '/bankList', page: () => BankListPages()),
23 23
   GetPage(name: '/addBankCard', page: () => AddBankPage()),
24 24
   GetPage(name: '/userInfo', page: () => UserInfo()),
25
+  GetPage(name: '/aboutUs', page: () => AboutUs()),
25 26
 ];

+ 78
- 78
pubspec.lock Dosyayı Görüntüle

@@ -5,175 +5,175 @@ packages:
5 5
     dependency: transitive
6 6
     description:
7 7
       name: _fe_analyzer_shared
8
-      url: "https://pub.dartlang.org"
8
+      url: "https://pub.flutter-io.cn"
9 9
     source: hosted
10 10
     version: "39.0.0"
11 11
   amap_flutter_base:
12 12
     dependency: transitive
13 13
     description:
14 14
       name: amap_flutter_base
15
-      url: "https://pub.dartlang.org"
15
+      url: "https://pub.flutter-io.cn"
16 16
     source: hosted
17 17
     version: "3.0.0"
18 18
   amap_flutter_location:
19 19
     dependency: "direct main"
20 20
     description:
21 21
       name: amap_flutter_location
22
-      url: "https://pub.dartlang.org"
22
+      url: "https://pub.flutter-io.cn"
23 23
     source: hosted
24 24
     version: "3.0.0"
25 25
   amap_flutter_map:
26 26
     dependency: "direct main"
27 27
     description:
28 28
       name: amap_flutter_map
29
-      url: "https://pub.dartlang.org"
29
+      url: "https://pub.flutter-io.cn"
30 30
     source: hosted
31 31
     version: "3.0.0"
32 32
   analyzer:
33 33
     dependency: transitive
34 34
     description:
35 35
       name: analyzer
36
-      url: "https://pub.dartlang.org"
36
+      url: "https://pub.flutter-io.cn"
37 37
     source: hosted
38 38
     version: "4.0.0"
39 39
   args:
40 40
     dependency: transitive
41 41
     description:
42 42
       name: args
43
-      url: "https://pub.dartlang.org"
43
+      url: "https://pub.flutter-io.cn"
44 44
     source: hosted
45 45
     version: "2.3.0"
46 46
   async:
47 47
     dependency: transitive
48 48
     description:
49 49
       name: async
50
-      url: "https://pub.dartlang.org"
50
+      url: "https://pub.flutter-io.cn"
51 51
     source: hosted
52 52
     version: "2.8.2"
53 53
   boolean_selector:
54 54
     dependency: transitive
55 55
     description:
56 56
       name: boolean_selector
57
-      url: "https://pub.dartlang.org"
57
+      url: "https://pub.flutter-io.cn"
58 58
     source: hosted
59 59
     version: "2.1.0"
60 60
   build:
61 61
     dependency: transitive
62 62
     description:
63 63
       name: build
64
-      url: "https://pub.dartlang.org"
64
+      url: "https://pub.flutter-io.cn"
65 65
     source: hosted
66 66
     version: "2.3.0"
67 67
   build_config:
68 68
     dependency: transitive
69 69
     description:
70 70
       name: build_config
71
-      url: "https://pub.dartlang.org"
71
+      url: "https://pub.flutter-io.cn"
72 72
     source: hosted
73 73
     version: "1.0.0"
74 74
   carousel_slider:
75 75
     dependency: "direct main"
76 76
     description:
77 77
       name: carousel_slider
78
-      url: "https://pub.dartlang.org"
78
+      url: "https://pub.flutter-io.cn"
79 79
     source: hosted
80 80
     version: "4.1.1"
81 81
   characters:
82 82
     dependency: transitive
83 83
     description:
84 84
       name: characters
85
-      url: "https://pub.dartlang.org"
85
+      url: "https://pub.flutter-io.cn"
86 86
     source: hosted
87 87
     version: "1.2.0"
88 88
   charcode:
89 89
     dependency: transitive
90 90
     description:
91 91
       name: charcode
92
-      url: "https://pub.dartlang.org"
92
+      url: "https://pub.flutter-io.cn"
93 93
     source: hosted
94 94
     version: "1.3.1"
95 95
   checked_yaml:
96 96
     dependency: transitive
97 97
     description:
98 98
       name: checked_yaml
99
-      url: "https://pub.dartlang.org"
99
+      url: "https://pub.flutter-io.cn"
100 100
     source: hosted
101 101
     version: "2.0.1"
102 102
   clock:
103 103
     dependency: transitive
104 104
     description:
105 105
       name: clock
106
-      url: "https://pub.dartlang.org"
106
+      url: "https://pub.flutter-io.cn"
107 107
     source: hosted
108 108
     version: "1.1.0"
109 109
   collection:
110 110
     dependency: transitive
111 111
     description:
112 112
       name: collection
113
-      url: "https://pub.dartlang.org"
113
+      url: "https://pub.flutter-io.cn"
114 114
     source: hosted
115 115
     version: "1.15.0"
116 116
   convert:
117 117
     dependency: transitive
118 118
     description:
119 119
       name: convert
120
-      url: "https://pub.dartlang.org"
120
+      url: "https://pub.flutter-io.cn"
121 121
     source: hosted
122 122
     version: "3.0.1"
123 123
   crypto:
124 124
     dependency: transitive
125 125
     description:
126 126
       name: crypto
127
-      url: "https://pub.dartlang.org"
127
+      url: "https://pub.flutter-io.cn"
128 128
     source: hosted
129 129
     version: "3.0.2"
130 130
   cupertino_icons:
131 131
     dependency: "direct main"
132 132
     description:
133 133
       name: cupertino_icons
134
-      url: "https://pub.dartlang.org"
134
+      url: "https://pub.flutter-io.cn"
135 135
     source: hosted
136 136
     version: "1.0.4"
137 137
   dart_style:
138 138
     dependency: transitive
139 139
     description:
140 140
       name: dart_style
141
-      url: "https://pub.dartlang.org"
141
+      url: "https://pub.flutter-io.cn"
142 142
     source: hosted
143 143
     version: "2.2.3"
144 144
   dio:
145 145
     dependency: "direct main"
146 146
     description:
147 147
       name: dio
148
-      url: "https://pub.dartlang.org"
148
+      url: "https://pub.flutter-io.cn"
149 149
     source: hosted
150 150
     version: "4.0.6"
151 151
   dotted_border:
152 152
     dependency: "direct main"
153 153
     description:
154 154
       name: dotted_border
155
-      url: "https://pub.dartlang.org"
155
+      url: "https://pub.flutter-io.cn"
156 156
     source: hosted
157 157
     version: "2.0.0+2"
158 158
   fake_async:
159 159
     dependency: transitive
160 160
     description:
161 161
       name: fake_async
162
-      url: "https://pub.dartlang.org"
162
+      url: "https://pub.flutter-io.cn"
163 163
     source: hosted
164 164
     version: "1.2.0"
165 165
   ffi:
166 166
     dependency: transitive
167 167
     description:
168 168
       name: ffi
169
-      url: "https://pub.dartlang.org"
169
+      url: "https://pub.flutter-io.cn"
170 170
     source: hosted
171 171
     version: "1.1.2"
172 172
   file:
173 173
     dependency: transitive
174 174
     description:
175 175
       name: file
176
-      url: "https://pub.dartlang.org"
176
+      url: "https://pub.flutter-io.cn"
177 177
     source: hosted
178 178
     version: "6.1.2"
179 179
   flutter:
@@ -185,28 +185,28 @@ packages:
185 185
     dependency: "direct dev"
186 186
     description:
187 187
       name: flutter_lints
188
-      url: "https://pub.dartlang.org"
188
+      url: "https://pub.flutter-io.cn"
189 189
     source: hosted
190 190
     version: "1.0.4"
191 191
   flutter_picker:
192 192
     dependency: "direct main"
193 193
     description:
194 194
       name: flutter_picker
195
-      url: "https://pub.dartlang.org"
195
+      url: "https://pub.flutter-io.cn"
196 196
     source: hosted
197 197
     version: "2.0.3"
198 198
   flutter_plugin_android_lifecycle:
199 199
     dependency: transitive
200 200
     description:
201 201
       name: flutter_plugin_android_lifecycle
202
-      url: "https://pub.dartlang.org"
202
+      url: "https://pub.flutter-io.cn"
203 203
     source: hosted
204 204
     version: "2.0.5"
205 205
   flutter_screenutil:
206 206
     dependency: "direct main"
207 207
     description:
208 208
       name: flutter_screenutil
209
-      url: "https://pub.dartlang.org"
209
+      url: "https://pub.flutter-io.cn"
210 210
     source: hosted
211 211
     version: "5.5.2"
212 212
   flutter_test:
@@ -223,238 +223,238 @@ packages:
223 223
     dependency: "direct main"
224 224
     description:
225 225
       name: fluttertoast
226
-      url: "https://pub.dartlang.org"
226
+      url: "https://pub.flutter-io.cn"
227 227
     source: hosted
228 228
     version: "8.0.9"
229 229
   get:
230 230
     dependency: "direct main"
231 231
     description:
232 232
       name: get
233
-      url: "https://pub.dartlang.org"
233
+      url: "https://pub.flutter-io.cn"
234 234
     source: hosted
235 235
     version: "4.6.1"
236 236
   get_storage:
237 237
     dependency: "direct main"
238 238
     description:
239 239
       name: get_storage
240
-      url: "https://pub.dartlang.org"
240
+      url: "https://pub.flutter-io.cn"
241 241
     source: hosted
242 242
     version: "2.0.3"
243 243
   glob:
244 244
     dependency: transitive
245 245
     description:
246 246
       name: glob
247
-      url: "https://pub.dartlang.org"
247
+      url: "https://pub.flutter-io.cn"
248 248
     source: hosted
249 249
     version: "2.0.2"
250 250
   http_parser:
251 251
     dependency: transitive
252 252
     description:
253 253
       name: http_parser
254
-      url: "https://pub.dartlang.org"
254
+      url: "https://pub.flutter-io.cn"
255 255
     source: hosted
256 256
     version: "4.0.0"
257 257
   js:
258 258
     dependency: transitive
259 259
     description:
260 260
       name: js
261
-      url: "https://pub.dartlang.org"
261
+      url: "https://pub.flutter-io.cn"
262 262
     source: hosted
263 263
     version: "0.6.3"
264 264
   json_annotation:
265 265
     dependency: transitive
266 266
     description:
267 267
       name: json_annotation
268
-      url: "https://pub.dartlang.org"
268
+      url: "https://pub.flutter-io.cn"
269 269
     source: hosted
270 270
     version: "4.5.0"
271 271
   json_serializable:
272 272
     dependency: "direct main"
273 273
     description:
274 274
       name: json_serializable
275
-      url: "https://pub.dartlang.org"
275
+      url: "https://pub.flutter-io.cn"
276 276
     source: hosted
277 277
     version: "6.2.0"
278 278
   lints:
279 279
     dependency: transitive
280 280
     description:
281 281
       name: lints
282
-      url: "https://pub.dartlang.org"
282
+      url: "https://pub.flutter-io.cn"
283 283
     source: hosted
284 284
     version: "1.0.1"
285 285
   logging:
286 286
     dependency: transitive
287 287
     description:
288 288
       name: logging
289
-      url: "https://pub.dartlang.org"
289
+      url: "https://pub.flutter-io.cn"
290 290
     source: hosted
291 291
     version: "1.0.2"
292 292
   matcher:
293 293
     dependency: transitive
294 294
     description:
295 295
       name: matcher
296
-      url: "https://pub.dartlang.org"
296
+      url: "https://pub.flutter-io.cn"
297 297
     source: hosted
298 298
     version: "0.12.11"
299 299
   material_color_utilities:
300 300
     dependency: transitive
301 301
     description:
302 302
       name: material_color_utilities
303
-      url: "https://pub.dartlang.org"
303
+      url: "https://pub.flutter-io.cn"
304 304
     source: hosted
305 305
     version: "0.1.3"
306 306
   meta:
307 307
     dependency: transitive
308 308
     description:
309 309
       name: meta
310
-      url: "https://pub.dartlang.org"
310
+      url: "https://pub.flutter-io.cn"
311 311
     source: hosted
312 312
     version: "1.7.0"
313 313
   package_config:
314 314
     dependency: transitive
315 315
     description:
316 316
       name: package_config
317
-      url: "https://pub.dartlang.org"
317
+      url: "https://pub.flutter-io.cn"
318 318
     source: hosted
319 319
     version: "2.0.2"
320 320
   path:
321 321
     dependency: transitive
322 322
     description:
323 323
       name: path
324
-      url: "https://pub.dartlang.org"
324
+      url: "https://pub.flutter-io.cn"
325 325
     source: hosted
326 326
     version: "1.8.0"
327 327
   path_drawing:
328 328
     dependency: transitive
329 329
     description:
330 330
       name: path_drawing
331
-      url: "https://pub.dartlang.org"
331
+      url: "https://pub.flutter-io.cn"
332 332
     source: hosted
333 333
     version: "1.0.0"
334 334
   path_parsing:
335 335
     dependency: transitive
336 336
     description:
337 337
       name: path_parsing
338
-      url: "https://pub.dartlang.org"
338
+      url: "https://pub.flutter-io.cn"
339 339
     source: hosted
340 340
     version: "1.0.0"
341 341
   path_provider:
342 342
     dependency: transitive
343 343
     description:
344 344
       name: path_provider
345
-      url: "https://pub.dartlang.org"
345
+      url: "https://pub.flutter-io.cn"
346 346
     source: hosted
347 347
     version: "2.0.9"
348 348
   path_provider_android:
349 349
     dependency: transitive
350 350
     description:
351 351
       name: path_provider_android
352
-      url: "https://pub.dartlang.org"
352
+      url: "https://pub.flutter-io.cn"
353 353
     source: hosted
354 354
     version: "2.0.13"
355 355
   path_provider_ios:
356 356
     dependency: transitive
357 357
     description:
358 358
       name: path_provider_ios
359
-      url: "https://pub.dartlang.org"
359
+      url: "https://pub.flutter-io.cn"
360 360
     source: hosted
361 361
     version: "2.0.8"
362 362
   path_provider_linux:
363 363
     dependency: transitive
364 364
     description:
365 365
       name: path_provider_linux
366
-      url: "https://pub.dartlang.org"
366
+      url: "https://pub.flutter-io.cn"
367 367
     source: hosted
368 368
     version: "2.1.5"
369 369
   path_provider_macos:
370 370
     dependency: transitive
371 371
     description:
372 372
       name: path_provider_macos
373
-      url: "https://pub.dartlang.org"
373
+      url: "https://pub.flutter-io.cn"
374 374
     source: hosted
375 375
     version: "2.0.5"
376 376
   path_provider_platform_interface:
377 377
     dependency: transitive
378 378
     description:
379 379
       name: path_provider_platform_interface
380
-      url: "https://pub.dartlang.org"
380
+      url: "https://pub.flutter-io.cn"
381 381
     source: hosted
382 382
     version: "2.0.3"
383 383
   path_provider_windows:
384 384
     dependency: transitive
385 385
     description:
386 386
       name: path_provider_windows
387
-      url: "https://pub.dartlang.org"
387
+      url: "https://pub.flutter-io.cn"
388 388
     source: hosted
389 389
     version: "2.0.5"
390 390
   permission_handler:
391 391
     dependency: "direct main"
392 392
     description:
393 393
       name: permission_handler
394
-      url: "https://pub.dartlang.org"
394
+      url: "https://pub.flutter-io.cn"
395 395
     source: hosted
396 396
     version: "9.2.0"
397 397
   permission_handler_android:
398 398
     dependency: transitive
399 399
     description:
400 400
       name: permission_handler_android
401
-      url: "https://pub.dartlang.org"
401
+      url: "https://pub.flutter-io.cn"
402 402
     source: hosted
403 403
     version: "9.0.2+1"
404 404
   permission_handler_apple:
405 405
     dependency: transitive
406 406
     description:
407 407
       name: permission_handler_apple
408
-      url: "https://pub.dartlang.org"
408
+      url: "https://pub.flutter-io.cn"
409 409
     source: hosted
410 410
     version: "9.0.4"
411 411
   permission_handler_platform_interface:
412 412
     dependency: transitive
413 413
     description:
414 414
       name: permission_handler_platform_interface
415
-      url: "https://pub.dartlang.org"
415
+      url: "https://pub.flutter-io.cn"
416 416
     source: hosted
417 417
     version: "3.7.0"
418 418
   permission_handler_windows:
419 419
     dependency: transitive
420 420
     description:
421 421
       name: permission_handler_windows
422
-      url: "https://pub.dartlang.org"
422
+      url: "https://pub.flutter-io.cn"
423 423
     source: hosted
424 424
     version: "0.1.0"
425 425
   platform:
426 426
     dependency: transitive
427 427
     description:
428 428
       name: platform
429
-      url: "https://pub.dartlang.org"
429
+      url: "https://pub.flutter-io.cn"
430 430
     source: hosted
431 431
     version: "3.1.0"
432 432
   plugin_platform_interface:
433 433
     dependency: transitive
434 434
     description:
435 435
       name: plugin_platform_interface
436
-      url: "https://pub.dartlang.org"
436
+      url: "https://pub.flutter-io.cn"
437 437
     source: hosted
438 438
     version: "2.1.2"
439 439
   process:
440 440
     dependency: transitive
441 441
     description:
442 442
       name: process
443
-      url: "https://pub.dartlang.org"
443
+      url: "https://pub.flutter-io.cn"
444 444
     source: hosted
445 445
     version: "4.2.4"
446 446
   pub_semver:
447 447
     dependency: transitive
448 448
     description:
449 449
       name: pub_semver
450
-      url: "https://pub.dartlang.org"
450
+      url: "https://pub.flutter-io.cn"
451 451
     source: hosted
452 452
     version: "2.1.1"
453 453
   pubspec_parse:
454 454
     dependency: transitive
455 455
     description:
456 456
       name: pubspec_parse
457
-      url: "https://pub.dartlang.org"
457
+      url: "https://pub.flutter-io.cn"
458 458
     source: hosted
459 459
     version: "1.2.0"
460 460
   sky_engine:
@@ -466,105 +466,105 @@ packages:
466 466
     dependency: transitive
467 467
     description:
468 468
       name: source_gen
469
-      url: "https://pub.dartlang.org"
469
+      url: "https://pub.flutter-io.cn"
470 470
     source: hosted
471 471
     version: "1.2.2"
472 472
   source_helper:
473 473
     dependency: transitive
474 474
     description:
475 475
       name: source_helper
476
-      url: "https://pub.dartlang.org"
476
+      url: "https://pub.flutter-io.cn"
477 477
     source: hosted
478 478
     version: "1.3.2"
479 479
   source_span:
480 480
     dependency: transitive
481 481
     description:
482 482
       name: source_span
483
-      url: "https://pub.dartlang.org"
483
+      url: "https://pub.flutter-io.cn"
484 484
     source: hosted
485 485
     version: "1.8.1"
486 486
   stack_trace:
487 487
     dependency: transitive
488 488
     description:
489 489
       name: stack_trace
490
-      url: "https://pub.dartlang.org"
490
+      url: "https://pub.flutter-io.cn"
491 491
     source: hosted
492 492
     version: "1.10.0"
493 493
   stream_channel:
494 494
     dependency: transitive
495 495
     description:
496 496
       name: stream_channel
497
-      url: "https://pub.dartlang.org"
497
+      url: "https://pub.flutter-io.cn"
498 498
     source: hosted
499 499
     version: "2.1.0"
500 500
   stream_transform:
501 501
     dependency: transitive
502 502
     description:
503 503
       name: stream_transform
504
-      url: "https://pub.dartlang.org"
504
+      url: "https://pub.flutter-io.cn"
505 505
     source: hosted
506 506
     version: "2.0.0"
507 507
   string_scanner:
508 508
     dependency: transitive
509 509
     description:
510 510
       name: string_scanner
511
-      url: "https://pub.dartlang.org"
511
+      url: "https://pub.flutter-io.cn"
512 512
     source: hosted
513 513
     version: "1.1.0"
514 514
   term_glyph:
515 515
     dependency: transitive
516 516
     description:
517 517
       name: term_glyph
518
-      url: "https://pub.dartlang.org"
518
+      url: "https://pub.flutter-io.cn"
519 519
     source: hosted
520 520
     version: "1.2.0"
521 521
   test_api:
522 522
     dependency: transitive
523 523
     description:
524 524
       name: test_api
525
-      url: "https://pub.dartlang.org"
525
+      url: "https://pub.flutter-io.cn"
526 526
     source: hosted
527 527
     version: "0.4.8"
528 528
   typed_data:
529 529
     dependency: transitive
530 530
     description:
531 531
       name: typed_data
532
-      url: "https://pub.dartlang.org"
532
+      url: "https://pub.flutter-io.cn"
533 533
     source: hosted
534 534
     version: "1.3.0"
535 535
   vector_math:
536 536
     dependency: transitive
537 537
     description:
538 538
       name: vector_math
539
-      url: "https://pub.dartlang.org"
539
+      url: "https://pub.flutter-io.cn"
540 540
     source: hosted
541 541
     version: "2.1.1"
542 542
   watcher:
543 543
     dependency: transitive
544 544
     description:
545 545
       name: watcher
546
-      url: "https://pub.dartlang.org"
546
+      url: "https://pub.flutter-io.cn"
547 547
     source: hosted
548 548
     version: "1.0.1"
549 549
   win32:
550 550
     dependency: transitive
551 551
     description:
552 552
       name: win32
553
-      url: "https://pub.dartlang.org"
553
+      url: "https://pub.flutter-io.cn"
554 554
     source: hosted
555 555
     version: "2.5.2"
556 556
   xdg_directories:
557 557
     dependency: transitive
558 558
     description:
559 559
       name: xdg_directories
560
-      url: "https://pub.dartlang.org"
560
+      url: "https://pub.flutter-io.cn"
561 561
     source: hosted
562 562
     version: "0.2.0+1"
563 563
   yaml:
564 564
     dependency: transitive
565 565
     description:
566 566
       name: yaml
567
-      url: "https://pub.dartlang.org"
567
+      url: "https://pub.flutter-io.cn"
568 568
     source: hosted
569 569
     version: "3.1.0"
570 570
 sdks: