reason

上传头像

...@@ -19,12 +19,16 @@ ...@@ -19,12 +19,16 @@
19 while the Flutter UI initializes. After that, this theme continues 19 while the Flutter UI initializes. After that, this theme continues
20 to determine the Window background behind the Flutter UI. --> 20 to determine the Window background behind the Flutter UI. -->
21 <intent-filter> 21 <intent-filter>
22 - <action android:name="android.intent.action.MAIN"/> 22 + <action android:name="android.intent.action.MAIN" />
23 - <category android:name="android.intent.category.LAUNCHER"/> 23 + <category android:name="android.intent.category.LAUNCHER" />
24 </intent-filter> 24 </intent-filter>
25 </activity> 25 </activity>
26 <!-- Don't delete the meta-data below. 26 <!-- Don't delete the meta-data below.
27 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 27 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
28 + <activity
29 + android:name="com.yalantis.ucrop.UCropActivity"
30 + android:screenOrientation="portrait"
31 + android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
28 <meta-data 32 <meta-data
29 android:name="flutterEmbedding" 33 android:name="flutterEmbedding"
30 android:value="2" /> 34 android:value="2" />
......
1 -import 'dart:io';
2 -
3 import 'package:flutter/material.dart'; 1 import 'package:flutter/material.dart';
4 import 'package:Parlando/extension/int_extension.dart'; 2 import 'package:Parlando/extension/int_extension.dart';
5 import 'package:Parlando/widgets/my_app_bar.dart'; 3 import 'package:Parlando/widgets/my_app_bar.dart';
6 import 'package:flutter_gen/gen_l10n/Parlando_localizations.dart'; 4 import 'package:flutter_gen/gen_l10n/Parlando_localizations.dart';
5 +import 'package:image_cropper/image_cropper.dart';
7 import 'package:image_picker/image_picker.dart'; 6 import 'package:image_picker/image_picker.dart';
8 7
9 class AccountEditPage extends StatefulWidget { 8 class AccountEditPage extends StatefulWidget {
...@@ -95,7 +94,17 @@ class MapScreenState extends State<AccountEditPage> ...@@ -95,7 +94,17 @@ class MapScreenState extends State<AccountEditPage>
95 ), 94 ),
96 ), 95 ),
97 onTap: () { 96 onTap: () {
98 - _getImage(); 97 + Navigator.pop(context);
98 + onImageButtonPressed(
99 + ImageSource.camera,
100 + context: context,
101 + capturedImageFile: (s) {
102 + setState(() {
103 + print(s);
104 + // _imageFile = s;
105 + });
106 + },
107 + );
99 }, 108 },
100 ), 109 ),
101 ListTile( 110 ListTile(
...@@ -108,10 +117,13 @@ class MapScreenState extends State<AccountEditPage> ...@@ -108,10 +117,13 @@ class MapScreenState extends State<AccountEditPage>
108 ), 117 ),
109 ), 118 ),
110 onTap: () { 119 onTap: () {
120 + Navigator.pop(context);
111 onImageButtonPressed( 121 onImageButtonPressed(
112 - ImageSource.gallery, context: context, 122 + ImageSource.gallery,
123 + context: context,
113 capturedImageFile: (s) { 124 capturedImageFile: (s) {
114 - print("file path ${s}"); 125 + print(
126 + "file path ${s}");
115 setState(() { 127 setState(() {
116 // _imageFile = s; 128 // _imageFile = s;
117 }); 129 });
...@@ -463,32 +475,46 @@ class MapScreenState extends State<AccountEditPage> ...@@ -463,32 +475,46 @@ class MapScreenState extends State<AccountEditPage>
463 } 475 }
464 } 476 }
465 477
478 +typedef CapturedImageFile = String Function(String);
479 +typedef OnPickImageCallback = void Function(
480 + double maxWidth, double maxHeight, int quality);
481 +
466 onImageButtonPressed(ImageSource source, 482 onImageButtonPressed(ImageSource source,
467 {required BuildContext context, capturedImageFile}) async { 483 {required BuildContext context, capturedImageFile}) async {
468 final ImagePicker _picker = ImagePicker(); 484 final ImagePicker _picker = ImagePicker();
469 - File val;
470 -
471 final pickedFile = await _picker.pickImage( 485 final pickedFile = await _picker.pickImage(
472 source: source, 486 source: source,
473 ); 487 );
474 488
475 - val = await ImageCropper.cropImage( 489 + if (pickedFile == null) {
490 + capturedImageFile(pickedFile!.path);
491 + return;
492 + }
493 + CroppedFile? croppedFile = await ImageCropper().cropImage(
476 sourcePath: pickedFile.path, 494 sourcePath: pickedFile.path,
477 - aspectRatio: CropAspectRatio(ratioX: 1, ratioY: 1), 495 + aspectRatio: const CropAspectRatio(ratioX: 1, ratioY: 1),
478 compressQuality: 100, 496 compressQuality: 100,
479 maxHeight: 700, 497 maxHeight: 700,
480 maxWidth: 700, 498 maxWidth: 700,
481 - compressFormat: ImageCompressFormat.jpg, 499 + compressFormat: ImageCompressFormat.png,
482 - androidUiSettings: AndroidUiSettings( 500 + aspectRatioPresets: [
483 - toolbarColor: Colors.white, 501 + CropAspectRatioPreset.square,
484 - toolbarTitle: "genie cropper", 502 + CropAspectRatioPreset.ratio3x2,
485 - ), 503 + CropAspectRatioPreset.original,
504 + CropAspectRatioPreset.ratio4x3,
505 + CropAspectRatioPreset.ratio16x9
506 + ],
507 + uiSettings: [
508 + AndroidUiSettings(
509 + toolbarTitle: '裁剪',
510 + toolbarColor: Colors.deepOrange,
511 + toolbarWidgetColor: Colors.white,
512 + initAspectRatio: CropAspectRatioPreset.original,
513 + lockAspectRatio: false),
514 + IOSUiSettings(
515 + title: '裁剪',
516 + ),
517 + ],
486 ); 518 );
487 - print("cropper ${val.runtimeType}"); 519 + capturedImageFile(croppedFile!.path);
488 - capturedImageFile(val.path);
489 -
490 } 520 }
491 -
492 -typedef capturedImageFile = String Function(String);
493 -typedef void OnPickImageCallback(
494 - double maxWidth, double maxHeight, int quality);
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,357 +5,357 @@ packages: ...@@ -5,357 +5,357 @@ packages:
5 dependency: transitive 5 dependency: transitive
6 description: 6 description:
7 name: _fe_analyzer_shared 7 name: _fe_analyzer_shared
8 - url: "https://pub.dartlang.org" 8 + url: "https://pub.flutter-io.cn"
9 source: hosted 9 source: hosted
10 version: "31.0.0" 10 version: "31.0.0"
11 analyzer: 11 analyzer:
12 dependency: transitive 12 dependency: transitive
13 description: 13 description:
14 name: analyzer 14 name: analyzer
15 - url: "https://pub.dartlang.org" 15 + url: "https://pub.flutter-io.cn"
16 source: hosted 16 source: hosted
17 version: "2.8.0" 17 version: "2.8.0"
18 archive: 18 archive:
19 dependency: transitive 19 dependency: transitive
20 description: 20 description:
21 name: archive 21 name: archive
22 - url: "https://pub.dartlang.org" 22 + url: "https://pub.flutter-io.cn"
23 source: hosted 23 source: hosted
24 version: "3.1.6" 24 version: "3.1.6"
25 args: 25 args:
26 dependency: transitive 26 dependency: transitive
27 description: 27 description:
28 name: args 28 name: args
29 - url: "https://pub.dartlang.org" 29 + url: "https://pub.flutter-io.cn"
30 source: hosted 30 source: hosted
31 version: "2.3.0" 31 version: "2.3.0"
32 async: 32 async:
33 dependency: transitive 33 dependency: transitive
34 description: 34 description:
35 name: async 35 name: async
36 - url: "https://pub.dartlang.org" 36 + url: "https://pub.flutter-io.cn"
37 source: hosted 37 source: hosted
38 version: "2.8.2" 38 version: "2.8.2"
39 boolean_selector: 39 boolean_selector:
40 dependency: transitive 40 dependency: transitive
41 description: 41 description:
42 name: boolean_selector 42 name: boolean_selector
43 - url: "https://pub.dartlang.org" 43 + url: "https://pub.flutter-io.cn"
44 source: hosted 44 source: hosted
45 version: "2.1.0" 45 version: "2.1.0"
46 build: 46 build:
47 dependency: transitive 47 dependency: transitive
48 description: 48 description:
49 name: build 49 name: build
50 - url: "https://pub.dartlang.org" 50 + url: "https://pub.flutter-io.cn"
51 source: hosted 51 source: hosted
52 version: "2.3.0" 52 version: "2.3.0"
53 build_config: 53 build_config:
54 dependency: transitive 54 dependency: transitive
55 description: 55 description:
56 name: build_config 56 name: build_config
57 - url: "https://pub.dartlang.org" 57 + url: "https://pub.flutter-io.cn"
58 source: hosted 58 source: hosted
59 version: "1.0.0" 59 version: "1.0.0"
60 build_daemon: 60 build_daemon:
61 dependency: transitive 61 dependency: transitive
62 description: 62 description:
63 name: build_daemon 63 name: build_daemon
64 - url: "https://pub.dartlang.org" 64 + url: "https://pub.flutter-io.cn"
65 source: hosted 65 source: hosted
66 version: "3.1.0" 66 version: "3.1.0"
67 build_resolvers: 67 build_resolvers:
68 dependency: transitive 68 dependency: transitive
69 description: 69 description:
70 name: build_resolvers 70 name: build_resolvers
71 - url: "https://pub.dartlang.org" 71 + url: "https://pub.flutter-io.cn"
72 source: hosted 72 source: hosted
73 version: "2.0.6" 73 version: "2.0.6"
74 build_runner: 74 build_runner:
75 dependency: "direct dev" 75 dependency: "direct dev"
76 description: 76 description:
77 name: build_runner 77 name: build_runner
78 - url: "https://pub.dartlang.org" 78 + url: "https://pub.flutter-io.cn"
79 source: hosted 79 source: hosted
80 version: "2.1.10" 80 version: "2.1.10"
81 build_runner_core: 81 build_runner_core:
82 dependency: transitive 82 dependency: transitive
83 description: 83 description:
84 name: build_runner_core 84 name: build_runner_core
85 - url: "https://pub.dartlang.org" 85 + url: "https://pub.flutter-io.cn"
86 source: hosted 86 source: hosted
87 version: "7.2.3" 87 version: "7.2.3"
88 built_collection: 88 built_collection:
89 dependency: transitive 89 dependency: transitive
90 description: 90 description:
91 name: built_collection 91 name: built_collection
92 - url: "https://pub.dartlang.org" 92 + url: "https://pub.flutter-io.cn"
93 source: hosted 93 source: hosted
94 version: "5.1.1" 94 version: "5.1.1"
95 built_value: 95 built_value:
96 dependency: transitive 96 dependency: transitive
97 description: 97 description:
98 name: built_value 98 name: built_value
99 - url: "https://pub.dartlang.org" 99 + url: "https://pub.flutter-io.cn"
100 source: hosted 100 source: hosted
101 - version: "8.2.0" 101 + version: "8.2.3"
102 cached_network_image: 102 cached_network_image:
103 dependency: "direct main" 103 dependency: "direct main"
104 description: 104 description:
105 name: cached_network_image 105 name: cached_network_image
106 - url: "https://pub.dartlang.org" 106 + url: "https://pub.flutter-io.cn"
107 source: hosted 107 source: hosted
108 version: "3.2.0" 108 version: "3.2.0"
109 cached_network_image_platform_interface: 109 cached_network_image_platform_interface:
110 dependency: transitive 110 dependency: transitive
111 description: 111 description:
112 name: cached_network_image_platform_interface 112 name: cached_network_image_platform_interface
113 - url: "https://pub.dartlang.org" 113 + url: "https://pub.flutter-io.cn"
114 source: hosted 114 source: hosted
115 version: "1.0.0" 115 version: "1.0.0"
116 cached_network_image_web: 116 cached_network_image_web:
117 dependency: transitive 117 dependency: transitive
118 description: 118 description:
119 name: cached_network_image_web 119 name: cached_network_image_web
120 - url: "https://pub.dartlang.org" 120 + url: "https://pub.flutter-io.cn"
121 source: hosted 121 source: hosted
122 version: "1.0.1" 122 version: "1.0.1"
123 camera: 123 camera:
124 dependency: "direct main" 124 dependency: "direct main"
125 description: 125 description:
126 name: camera 126 name: camera
127 - url: "https://pub.dartlang.org" 127 + url: "https://pub.flutter-io.cn"
128 source: hosted 128 source: hosted
129 - version: "0.9.4+20" 129 + version: "0.9.4+21"
130 camera_platform_interface: 130 camera_platform_interface:
131 dependency: transitive 131 dependency: transitive
132 description: 132 description:
133 name: camera_platform_interface 133 name: camera_platform_interface
134 - url: "https://pub.dartlang.org" 134 + url: "https://pub.flutter-io.cn"
135 source: hosted 135 source: hosted
136 version: "2.1.6" 136 version: "2.1.6"
137 camera_web: 137 camera_web:
138 dependency: transitive 138 dependency: transitive
139 description: 139 description:
140 name: camera_web 140 name: camera_web
141 - url: "https://pub.dartlang.org" 141 + url: "https://pub.flutter-io.cn"
142 source: hosted 142 source: hosted
143 version: "0.2.1+3" 143 version: "0.2.1+3"
144 characters: 144 characters:
145 dependency: transitive 145 dependency: transitive
146 description: 146 description:
147 name: characters 147 name: characters
148 - url: "https://pub.dartlang.org" 148 + url: "https://pub.flutter-io.cn"
149 source: hosted 149 source: hosted
150 version: "1.2.0" 150 version: "1.2.0"
151 charcode: 151 charcode:
152 dependency: transitive 152 dependency: transitive
153 description: 153 description:
154 name: charcode 154 name: charcode
155 - url: "https://pub.dartlang.org" 155 + url: "https://pub.flutter-io.cn"
156 source: hosted 156 source: hosted
157 version: "1.3.1" 157 version: "1.3.1"
158 checked_yaml: 158 checked_yaml:
159 dependency: transitive 159 dependency: transitive
160 description: 160 description:
161 name: checked_yaml 161 name: checked_yaml
162 - url: "https://pub.dartlang.org" 162 + url: "https://pub.flutter-io.cn"
163 source: hosted 163 source: hosted
164 version: "2.0.1" 164 version: "2.0.1"
165 cli_util: 165 cli_util:
166 dependency: transitive 166 dependency: transitive
167 description: 167 description:
168 name: cli_util 168 name: cli_util
169 - url: "https://pub.dartlang.org" 169 + url: "https://pub.flutter-io.cn"
170 source: hosted 170 source: hosted
171 version: "0.3.5" 171 version: "0.3.5"
172 clock: 172 clock:
173 dependency: transitive 173 dependency: transitive
174 description: 174 description:
175 name: clock 175 name: clock
176 - url: "https://pub.dartlang.org" 176 + url: "https://pub.flutter-io.cn"
177 source: hosted 177 source: hosted
178 version: "1.1.0" 178 version: "1.1.0"
179 code_builder: 179 code_builder:
180 dependency: transitive 180 dependency: transitive
181 description: 181 description:
182 name: code_builder 182 name: code_builder
183 - url: "https://pub.dartlang.org" 183 + url: "https://pub.flutter-io.cn"
184 source: hosted 184 source: hosted
185 version: "4.1.0" 185 version: "4.1.0"
186 collection: 186 collection:
187 dependency: transitive 187 dependency: transitive
188 description: 188 description:
189 name: collection 189 name: collection
190 - url: "https://pub.dartlang.org" 190 + url: "https://pub.flutter-io.cn"
191 source: hosted 191 source: hosted
192 version: "1.15.0" 192 version: "1.15.0"
193 common_utils: 193 common_utils:
194 dependency: "direct main" 194 dependency: "direct main"
195 description: 195 description:
196 name: common_utils 196 name: common_utils
197 - url: "https://pub.dartlang.org" 197 + url: "https://pub.flutter-io.cn"
198 source: hosted 198 source: hosted
199 version: "2.0.2" 199 version: "2.0.2"
200 convert: 200 convert:
201 dependency: transitive 201 dependency: transitive
202 description: 202 description:
203 name: convert 203 name: convert
204 - url: "https://pub.dartlang.org" 204 + url: "https://pub.flutter-io.cn"
205 source: hosted 205 source: hosted
206 version: "3.0.1" 206 version: "3.0.1"
207 coverage: 207 coverage:
208 dependency: transitive 208 dependency: transitive
209 description: 209 description:
210 name: coverage 210 name: coverage
211 - url: "https://pub.dartlang.org" 211 + url: "https://pub.flutter-io.cn"
212 source: hosted 212 source: hosted
213 version: "1.0.3" 213 version: "1.0.3"
214 cross_file: 214 cross_file:
215 dependency: transitive 215 dependency: transitive
216 description: 216 description:
217 name: cross_file 217 name: cross_file
218 - url: "https://pub.dartlang.org" 218 + url: "https://pub.flutter-io.cn"
219 source: hosted 219 source: hosted
220 - version: "0.3.2" 220 + version: "0.3.3"
221 crypto: 221 crypto:
222 dependency: transitive 222 dependency: transitive
223 description: 223 description:
224 name: crypto 224 name: crypto
225 - url: "https://pub.dartlang.org" 225 + url: "https://pub.flutter-io.cn"
226 source: hosted 226 source: hosted
227 version: "3.0.1" 227 version: "3.0.1"
228 csslib: 228 csslib:
229 dependency: transitive 229 dependency: transitive
230 description: 230 description:
231 name: csslib 231 name: csslib
232 - url: "https://pub.dartlang.org" 232 + url: "https://pub.flutter-io.cn"
233 source: hosted 233 source: hosted
234 version: "0.17.1" 234 version: "0.17.1"
235 cupertino_icons: 235 cupertino_icons:
236 dependency: "direct main" 236 dependency: "direct main"
237 description: 237 description:
238 name: cupertino_icons 238 name: cupertino_icons
239 - url: "https://pub.dartlang.org" 239 + url: "https://pub.flutter-io.cn"
240 source: hosted 240 source: hosted
241 version: "1.0.4" 241 version: "1.0.4"
242 dart_style: 242 dart_style:
243 dependency: transitive 243 dependency: transitive
244 description: 244 description:
245 name: dart_style 245 name: dart_style
246 - url: "https://pub.dartlang.org" 246 + url: "https://pub.flutter-io.cn"
247 source: hosted 247 source: hosted
248 version: "2.2.1" 248 version: "2.2.1"
249 decimal: 249 decimal:
250 dependency: "direct overridden" 250 dependency: "direct overridden"
251 description: 251 description:
252 name: decimal 252 name: decimal
253 - url: "https://pub.dartlang.org" 253 + url: "https://pub.flutter-io.cn"
254 source: hosted 254 source: hosted
255 version: "1.5.0" 255 version: "1.5.0"
256 device_info_plus: 256 device_info_plus:
257 dependency: "direct main" 257 dependency: "direct main"
258 description: 258 description:
259 name: device_info_plus 259 name: device_info_plus
260 - url: "https://pub.dartlang.org" 260 + url: "https://pub.flutter-io.cn"
261 source: hosted 261 source: hosted
262 version: "3.2.3" 262 version: "3.2.3"
263 device_info_plus_linux: 263 device_info_plus_linux:
264 dependency: transitive 264 dependency: transitive
265 description: 265 description:
266 name: device_info_plus_linux 266 name: device_info_plus_linux
267 - url: "https://pub.dartlang.org" 267 + url: "https://pub.flutter-io.cn"
268 source: hosted 268 source: hosted
269 version: "2.1.1" 269 version: "2.1.1"
270 device_info_plus_macos: 270 device_info_plus_macos:
271 dependency: transitive 271 dependency: transitive
272 description: 272 description:
273 name: device_info_plus_macos 273 name: device_info_plus_macos
274 - url: "https://pub.dartlang.org" 274 + url: "https://pub.flutter-io.cn"
275 source: hosted 275 source: hosted
276 version: "2.2.3" 276 version: "2.2.3"
277 device_info_plus_platform_interface: 277 device_info_plus_platform_interface:
278 dependency: transitive 278 dependency: transitive
279 description: 279 description:
280 name: device_info_plus_platform_interface 280 name: device_info_plus_platform_interface
281 - url: "https://pub.dartlang.org" 281 + url: "https://pub.flutter-io.cn"
282 source: hosted 282 source: hosted
283 version: "2.3.0+1" 283 version: "2.3.0+1"
284 device_info_plus_web: 284 device_info_plus_web:
285 dependency: transitive 285 dependency: transitive
286 description: 286 description:
287 name: device_info_plus_web 287 name: device_info_plus_web
288 - url: "https://pub.dartlang.org" 288 + url: "https://pub.flutter-io.cn"
289 source: hosted 289 source: hosted
290 version: "2.1.0" 290 version: "2.1.0"
291 device_info_plus_windows: 291 device_info_plus_windows:
292 dependency: transitive 292 dependency: transitive
293 description: 293 description:
294 name: device_info_plus_windows 294 name: device_info_plus_windows
295 - url: "https://pub.dartlang.org" 295 + url: "https://pub.flutter-io.cn"
296 source: hosted 296 source: hosted
297 version: "2.1.1" 297 version: "2.1.1"
298 dio: 298 dio:
299 dependency: "direct main" 299 dependency: "direct main"
300 description: 300 description:
301 name: dio 301 name: dio
302 - url: "https://pub.dartlang.org" 302 + url: "https://pub.flutter-io.cn"
303 source: hosted 303 source: hosted
304 version: "4.0.6" 304 version: "4.0.6"
305 email_validator: 305 email_validator:
306 dependency: "direct main" 306 dependency: "direct main"
307 description: 307 description:
308 name: email_validator 308 name: email_validator
309 - url: "https://pub.dartlang.org" 309 + url: "https://pub.flutter-io.cn"
310 source: hosted 310 source: hosted
311 version: "2.0.1" 311 version: "2.0.1"
312 fake_async: 312 fake_async:
313 dependency: transitive 313 dependency: transitive
314 description: 314 description:
315 name: fake_async 315 name: fake_async
316 - url: "https://pub.dartlang.org" 316 + url: "https://pub.flutter-io.cn"
317 source: hosted 317 source: hosted
318 version: "1.2.0" 318 version: "1.2.0"
319 ffi: 319 ffi:
320 dependency: transitive 320 dependency: transitive
321 description: 321 description:
322 name: ffi 322 name: ffi
323 - url: "https://pub.dartlang.org" 323 + url: "https://pub.flutter-io.cn"
324 source: hosted 324 source: hosted
325 version: "1.1.2" 325 version: "1.1.2"
326 fijkplayer: 326 fijkplayer:
327 dependency: "direct main" 327 dependency: "direct main"
328 description: 328 description:
329 name: fijkplayer 329 name: fijkplayer
330 - url: "https://pub.dartlang.org" 330 + url: "https://pub.flutter-io.cn"
331 source: hosted 331 source: hosted
332 version: "0.10.1" 332 version: "0.10.1"
333 file: 333 file:
334 dependency: transitive 334 dependency: transitive
335 description: 335 description:
336 name: file 336 name: file
337 - url: "https://pub.dartlang.org" 337 + url: "https://pub.flutter-io.cn"
338 source: hosted 338 source: hosted
339 version: "6.1.2" 339 version: "6.1.2"
340 fixnum: 340 fixnum:
341 dependency: transitive 341 dependency: transitive
342 description: 342 description:
343 name: fixnum 343 name: fixnum
344 - url: "https://pub.dartlang.org" 344 + url: "https://pub.flutter-io.cn"
345 source: hosted 345 source: hosted
346 version: "1.0.0" 346 version: "1.0.0"
347 fluro: 347 fluro:
348 dependency: "direct main" 348 dependency: "direct main"
349 description: 349 description:
350 name: fluro 350 name: fluro
351 - url: "https://pub.dartlang.org" 351 + url: "https://pub.flutter-io.cn"
352 source: hosted 352 source: hosted
353 version: "2.0.3" 353 version: "2.0.3"
354 flustars: 354 flustars:
355 dependency: "direct main" 355 dependency: "direct main"
356 description: 356 description:
357 name: flustars 357 name: flustars
358 - url: "https://pub.dartlang.org" 358 + url: "https://pub.flutter-io.cn"
359 source: hosted 359 source: hosted
360 version: "2.0.1" 360 version: "2.0.1"
361 flutter: 361 flutter:
...@@ -376,14 +376,14 @@ packages: ...@@ -376,14 +376,14 @@ packages:
376 dependency: transitive 376 dependency: transitive
377 description: 377 description:
378 name: flutter_blurhash 378 name: flutter_blurhash
379 - url: "https://pub.dartlang.org" 379 + url: "https://pub.flutter-io.cn"
380 source: hosted 380 source: hosted
381 version: "0.6.8" 381 version: "0.6.8"
382 flutter_cache_manager: 382 flutter_cache_manager:
383 dependency: transitive 383 dependency: transitive
384 description: 384 description:
385 name: flutter_cache_manager 385 name: flutter_cache_manager
386 - url: "https://pub.dartlang.org" 386 + url: "https://pub.flutter-io.cn"
387 source: hosted 387 source: hosted
388 version: "3.3.0" 388 version: "3.3.0"
389 flutter_driver: 389 flutter_driver:
...@@ -395,14 +395,14 @@ packages: ...@@ -395,14 +395,14 @@ packages:
395 dependency: "direct dev" 395 dependency: "direct dev"
396 description: 396 description:
397 name: flutter_launcher_icons 397 name: flutter_launcher_icons
398 - url: "https://pub.dartlang.org" 398 + url: "https://pub.flutter-io.cn"
399 source: hosted 399 source: hosted
400 version: "0.9.2" 400 version: "0.9.2"
401 flutter_lints: 401 flutter_lints:
402 dependency: "direct dev" 402 dependency: "direct dev"
403 description: 403 description:
404 name: flutter_lints 404 name: flutter_lints
405 - url: "https://pub.dartlang.org" 405 + url: "https://pub.flutter-io.cn"
406 source: hosted 406 source: hosted
407 version: "1.0.4" 407 version: "1.0.4"
408 flutter_localizations: 408 flutter_localizations:
...@@ -414,56 +414,56 @@ packages: ...@@ -414,56 +414,56 @@ packages:
414 dependency: "direct dev" 414 dependency: "direct dev"
415 description: 415 description:
416 name: flutter_native_splash 416 name: flutter_native_splash
417 - url: "https://pub.dartlang.org" 417 + url: "https://pub.flutter-io.cn"
418 source: hosted 418 source: hosted
419 version: "2.1.6" 419 version: "2.1.6"
420 flutter_plugin_android_lifecycle: 420 flutter_plugin_android_lifecycle:
421 dependency: transitive 421 dependency: transitive
422 description: 422 description:
423 name: flutter_plugin_android_lifecycle 423 name: flutter_plugin_android_lifecycle
424 - url: "https://pub.dartlang.org" 424 + url: "https://pub.flutter-io.cn"
425 source: hosted 425 source: hosted
426 version: "2.0.5" 426 version: "2.0.5"
427 flutter_slidable: 427 flutter_slidable:
428 dependency: "direct main" 428 dependency: "direct main"
429 description: 429 description:
430 name: flutter_slidable 430 name: flutter_slidable
431 - url: "https://pub.dartlang.org" 431 + url: "https://pub.flutter-io.cn"
432 source: hosted 432 source: hosted
433 version: "1.2.0" 433 version: "1.2.0"
434 flutter_sound: 434 flutter_sound:
435 dependency: "direct main" 435 dependency: "direct main"
436 description: 436 description:
437 name: flutter_sound 437 name: flutter_sound
438 - url: "https://pub.dartlang.org" 438 + url: "https://pub.flutter-io.cn"
439 source: hosted 439 source: hosted
440 version: "9.2.10" 440 version: "9.2.10"
441 flutter_sound_platform_interface: 441 flutter_sound_platform_interface:
442 dependency: transitive 442 dependency: transitive
443 description: 443 description:
444 name: flutter_sound_platform_interface 444 name: flutter_sound_platform_interface
445 - url: "https://pub.dartlang.org" 445 + url: "https://pub.flutter-io.cn"
446 source: hosted 446 source: hosted
447 version: "9.2.10" 447 version: "9.2.10"
448 flutter_sound_web: 448 flutter_sound_web:
449 dependency: transitive 449 dependency: transitive
450 description: 450 description:
451 name: flutter_sound_web 451 name: flutter_sound_web
452 - url: "https://pub.dartlang.org" 452 + url: "https://pub.flutter-io.cn"
453 source: hosted 453 source: hosted
454 version: "9.2.10" 454 version: "9.2.10"
455 flutter_spinkit: 455 flutter_spinkit:
456 dependency: "direct main" 456 dependency: "direct main"
457 description: 457 description:
458 name: flutter_spinkit 458 name: flutter_spinkit
459 - url: "https://pub.dartlang.org" 459 + url: "https://pub.flutter-io.cn"
460 source: hosted 460 source: hosted
461 version: "5.1.0" 461 version: "5.1.0"
462 flutter_swiper_null_safety: 462 flutter_swiper_null_safety:
463 dependency: "direct main" 463 dependency: "direct main"
464 description: 464 description:
465 name: flutter_swiper_null_safety 465 name: flutter_swiper_null_safety
466 - url: "https://pub.dartlang.org" 466 + url: "https://pub.flutter-io.cn"
467 source: hosted 467 source: hosted
468 version: "1.0.2" 468 version: "1.0.2"
469 flutter_test: 469 flutter_test:
...@@ -480,7 +480,7 @@ packages: ...@@ -480,7 +480,7 @@ packages:
480 dependency: transitive 480 dependency: transitive
481 description: 481 description:
482 name: frontend_server_client 482 name: frontend_server_client
483 - url: "https://pub.dartlang.org" 483 + url: "https://pub.flutter-io.cn"
484 source: hosted 484 source: hosted
485 version: "2.1.2" 485 version: "2.1.2"
486 fuchsia_remote_debug_protocol: 486 fuchsia_remote_debug_protocol:
...@@ -492,91 +492,112 @@ packages: ...@@ -492,91 +492,112 @@ packages:
492 dependency: "direct main" 492 dependency: "direct main"
493 description: 493 description:
494 name: getwidget 494 name: getwidget
495 - url: "https://pub.dartlang.org" 495 + url: "https://pub.flutter-io.cn"
496 source: hosted 496 source: hosted
497 version: "2.0.5" 497 version: "2.0.5"
498 glob: 498 glob:
499 dependency: transitive 499 dependency: transitive
500 description: 500 description:
501 name: glob 501 name: glob
502 - url: "https://pub.dartlang.org" 502 + url: "https://pub.flutter-io.cn"
503 source: hosted 503 source: hosted
504 version: "2.0.2" 504 version: "2.0.2"
505 graphs: 505 graphs:
506 dependency: transitive 506 dependency: transitive
507 description: 507 description:
508 name: graphs 508 name: graphs
509 - url: "https://pub.dartlang.org" 509 + url: "https://pub.flutter-io.cn"
510 source: hosted 510 source: hosted
511 version: "2.1.0" 511 version: "2.1.0"
512 html: 512 html:
513 dependency: transitive 513 dependency: transitive
514 description: 514 description:
515 name: html 515 name: html
516 - url: "https://pub.dartlang.org" 516 + url: "https://pub.flutter-io.cn"
517 source: hosted 517 source: hosted
518 version: "0.15.0" 518 version: "0.15.0"
519 http: 519 http:
520 dependency: transitive 520 dependency: transitive
521 description: 521 description:
522 name: http 522 name: http
523 - url: "https://pub.dartlang.org" 523 + url: "https://pub.flutter-io.cn"
524 source: hosted 524 source: hosted
525 version: "0.13.4" 525 version: "0.13.4"
526 http_multi_server: 526 http_multi_server:
527 dependency: transitive 527 dependency: transitive
528 description: 528 description:
529 name: http_multi_server 529 name: http_multi_server
530 - url: "https://pub.dartlang.org" 530 + url: "https://pub.flutter-io.cn"
531 source: hosted 531 source: hosted
532 version: "3.2.0" 532 version: "3.2.0"
533 http_parser: 533 http_parser:
534 dependency: transitive 534 dependency: transitive
535 description: 535 description:
536 name: http_parser 536 name: http_parser
537 - url: "https://pub.dartlang.org" 537 + url: "https://pub.flutter-io.cn"
538 source: hosted 538 source: hosted
539 version: "4.0.0" 539 version: "4.0.0"
540 image: 540 image:
541 dependency: transitive 541 dependency: transitive
542 description: 542 description:
543 name: image 543 name: image
544 - url: "https://pub.dartlang.org" 544 + url: "https://pub.flutter-io.cn"
545 source: hosted 545 source: hosted
546 version: "3.1.3" 546 version: "3.1.3"
547 + image_cropper:
548 + dependency: "direct main"
549 + description:
550 + name: image_cropper
551 + url: "https://pub.flutter-io.cn"
552 + source: hosted
553 + version: "2.0.0"
554 + image_cropper_for_web:
555 + dependency: transitive
556 + description:
557 + name: image_cropper_for_web
558 + url: "https://pub.flutter-io.cn"
559 + source: hosted
560 + version: "0.0.2"
561 + image_cropper_platform_interface:
562 + dependency: transitive
563 + description:
564 + name: image_cropper_platform_interface
565 + url: "https://pub.flutter-io.cn"
566 + source: hosted
567 + version: "2.0.0"
547 image_picker: 568 image_picker:
548 dependency: "direct main" 569 dependency: "direct main"
549 description: 570 description:
550 name: image_picker 571 name: image_picker
551 - url: "https://pub.dartlang.org" 572 + url: "https://pub.flutter-io.cn"
552 source: hosted 573 source: hosted
553 version: "0.8.5" 574 version: "0.8.5"
554 image_picker_android: 575 image_picker_android:
555 dependency: transitive 576 dependency: transitive
556 description: 577 description:
557 name: image_picker_android 578 name: image_picker_android
558 - url: "https://pub.dartlang.org" 579 + url: "https://pub.flutter-io.cn"
559 source: hosted 580 source: hosted
560 version: "0.8.4+11" 581 version: "0.8.4+11"
561 image_picker_for_web: 582 image_picker_for_web:
562 dependency: transitive 583 dependency: transitive
563 description: 584 description:
564 name: image_picker_for_web 585 name: image_picker_for_web
565 - url: "https://pub.dartlang.org" 586 + url: "https://pub.flutter-io.cn"
566 source: hosted 587 source: hosted
567 version: "2.1.6" 588 version: "2.1.6"
568 image_picker_ios: 589 image_picker_ios:
569 dependency: transitive 590 dependency: transitive
570 description: 591 description:
571 name: image_picker_ios 592 name: image_picker_ios
572 - url: "https://pub.dartlang.org" 593 + url: "https://pub.flutter-io.cn"
573 source: hosted 594 source: hosted
574 version: "0.8.5" 595 version: "0.8.5"
575 image_picker_platform_interface: 596 image_picker_platform_interface:
576 dependency: transitive 597 dependency: transitive
577 description: 598 description:
578 name: image_picker_platform_interface 599 name: image_picker_platform_interface
579 - url: "https://pub.dartlang.org" 600 + url: "https://pub.flutter-io.cn"
580 source: hosted 601 source: hosted
581 version: "2.4.4" 602 version: "2.4.4"
582 integration_test: 603 integration_test:
...@@ -588,469 +609,469 @@ packages: ...@@ -588,469 +609,469 @@ packages:
588 dependency: "direct main" 609 dependency: "direct main"
589 description: 610 description:
590 name: intl 611 name: intl
591 - url: "https://pub.dartlang.org" 612 + url: "https://pub.flutter-io.cn"
592 source: hosted 613 source: hosted
593 version: "0.17.0" 614 version: "0.17.0"
594 io: 615 io:
595 dependency: transitive 616 dependency: transitive
596 description: 617 description:
597 name: io 618 name: io
598 - url: "https://pub.dartlang.org" 619 + url: "https://pub.flutter-io.cn"
599 source: hosted 620 source: hosted
600 version: "1.0.3" 621 version: "1.0.3"
601 js: 622 js:
602 dependency: transitive 623 dependency: transitive
603 description: 624 description:
604 name: js 625 name: js
605 - url: "https://pub.dartlang.org" 626 + url: "https://pub.flutter-io.cn"
606 source: hosted 627 source: hosted
607 version: "0.6.3" 628 version: "0.6.3"
608 json_annotation: 629 json_annotation:
609 dependency: "direct main" 630 dependency: "direct main"
610 description: 631 description:
611 name: json_annotation 632 name: json_annotation
612 - url: "https://pub.dartlang.org" 633 + url: "https://pub.flutter-io.cn"
613 source: hosted 634 source: hosted
614 - version: "4.4.0" 635 + version: "4.5.0"
615 json_serializable: 636 json_serializable:
616 dependency: "direct dev" 637 dependency: "direct dev"
617 description: 638 description:
618 name: json_serializable 639 name: json_serializable
619 - url: "https://pub.dartlang.org" 640 + url: "https://pub.flutter-io.cn"
620 source: hosted 641 source: hosted
621 - version: "6.1.6" 642 + version: "6.2.0"
622 keyboard_actions: 643 keyboard_actions:
623 dependency: "direct main" 644 dependency: "direct main"
624 description: 645 description:
625 name: keyboard_actions 646 name: keyboard_actions
626 - url: "https://pub.dartlang.org" 647 + url: "https://pub.flutter-io.cn"
627 source: hosted 648 source: hosted
628 version: "3.4.7" 649 version: "3.4.7"
629 lint: 650 lint:
630 dependency: transitive 651 dependency: transitive
631 description: 652 description:
632 name: lint 653 name: lint
633 - url: "https://pub.dartlang.org" 654 + url: "https://pub.flutter-io.cn"
634 source: hosted 655 source: hosted
635 version: "1.8.2" 656 version: "1.8.2"
636 lints: 657 lints:
637 dependency: transitive 658 dependency: transitive
638 description: 659 description:
639 name: lints 660 name: lints
640 - url: "https://pub.dartlang.org" 661 + url: "https://pub.flutter-io.cn"
641 source: hosted 662 source: hosted
642 version: "1.0.1" 663 version: "1.0.1"
643 logger: 664 logger:
644 dependency: transitive 665 dependency: transitive
645 description: 666 description:
646 name: logger 667 name: logger
647 - url: "https://pub.dartlang.org" 668 + url: "https://pub.flutter-io.cn"
648 source: hosted 669 source: hosted
649 version: "1.1.0" 670 version: "1.1.0"
650 logging: 671 logging:
651 dependency: transitive 672 dependency: transitive
652 description: 673 description:
653 name: logging 674 name: logging
654 - url: "https://pub.dartlang.org" 675 + url: "https://pub.flutter-io.cn"
655 source: hosted 676 source: hosted
656 version: "1.0.2" 677 version: "1.0.2"
657 matcher: 678 matcher:
658 dependency: transitive 679 dependency: transitive
659 description: 680 description:
660 name: matcher 681 name: matcher
661 - url: "https://pub.dartlang.org" 682 + url: "https://pub.flutter-io.cn"
662 source: hosted 683 source: hosted
663 version: "0.12.11" 684 version: "0.12.11"
664 material_color_utilities: 685 material_color_utilities:
665 dependency: transitive 686 dependency: transitive
666 description: 687 description:
667 name: material_color_utilities 688 name: material_color_utilities
668 - url: "https://pub.dartlang.org" 689 + url: "https://pub.flutter-io.cn"
669 source: hosted 690 source: hosted
670 version: "0.1.3" 691 version: "0.1.3"
671 meta: 692 meta:
672 dependency: transitive 693 dependency: transitive
673 description: 694 description:
674 name: meta 695 name: meta
675 - url: "https://pub.dartlang.org" 696 + url: "https://pub.flutter-io.cn"
676 source: hosted 697 source: hosted
677 version: "1.7.0" 698 version: "1.7.0"
678 mime: 699 mime:
679 dependency: transitive 700 dependency: transitive
680 description: 701 description:
681 name: mime 702 name: mime
682 - url: "https://pub.dartlang.org" 703 + url: "https://pub.flutter-io.cn"
683 source: hosted 704 source: hosted
684 - version: "1.0.1" 705 + version: "1.0.2"
685 nested: 706 nested:
686 dependency: transitive 707 dependency: transitive
687 description: 708 description:
688 name: nested 709 name: nested
689 - url: "https://pub.dartlang.org" 710 + url: "https://pub.flutter-io.cn"
690 source: hosted 711 source: hosted
691 version: "1.0.0" 712 version: "1.0.0"
692 node_preamble: 713 node_preamble:
693 dependency: transitive 714 dependency: transitive
694 description: 715 description:
695 name: node_preamble 716 name: node_preamble
696 - url: "https://pub.dartlang.org" 717 + url: "https://pub.flutter-io.cn"
697 source: hosted 718 source: hosted
698 version: "2.0.1" 719 version: "2.0.1"
699 octo_image: 720 octo_image:
700 dependency: transitive 721 dependency: transitive
701 description: 722 description:
702 name: octo_image 723 name: octo_image
703 - url: "https://pub.dartlang.org" 724 + url: "https://pub.flutter-io.cn"
704 source: hosted 725 source: hosted
705 version: "1.0.1" 726 version: "1.0.1"
706 oktoast: 727 oktoast:
707 dependency: "direct main" 728 dependency: "direct main"
708 description: 729 description:
709 name: oktoast 730 name: oktoast
710 - url: "https://pub.dartlang.org" 731 + url: "https://pub.flutter-io.cn"
711 source: hosted 732 source: hosted
712 version: "3.1.5" 733 version: "3.1.5"
713 package_config: 734 package_config:
714 dependency: transitive 735 dependency: transitive
715 description: 736 description:
716 name: package_config 737 name: package_config
717 - url: "https://pub.dartlang.org" 738 + url: "https://pub.flutter-io.cn"
718 source: hosted 739 source: hosted
719 version: "2.0.2" 740 version: "2.0.2"
720 path: 741 path:
721 dependency: transitive 742 dependency: transitive
722 description: 743 description:
723 name: path 744 name: path
724 - url: "https://pub.dartlang.org" 745 + url: "https://pub.flutter-io.cn"
725 source: hosted 746 source: hosted
726 version: "1.8.0" 747 version: "1.8.0"
727 path_provider: 748 path_provider:
728 dependency: "direct main" 749 dependency: "direct main"
729 description: 750 description:
730 name: path_provider 751 name: path_provider
731 - url: "https://pub.dartlang.org" 752 + url: "https://pub.flutter-io.cn"
732 source: hosted 753 source: hosted
733 version: "2.0.9" 754 version: "2.0.9"
734 path_provider_android: 755 path_provider_android:
735 dependency: transitive 756 dependency: transitive
736 description: 757 description:
737 name: path_provider_android 758 name: path_provider_android
738 - url: "https://pub.dartlang.org" 759 + url: "https://pub.flutter-io.cn"
739 source: hosted 760 source: hosted
740 - version: "2.0.12" 761 + version: "2.0.13"
741 path_provider_ios: 762 path_provider_ios:
742 dependency: transitive 763 dependency: transitive
743 description: 764 description:
744 name: path_provider_ios 765 name: path_provider_ios
745 - url: "https://pub.dartlang.org" 766 + url: "https://pub.flutter-io.cn"
746 source: hosted 767 source: hosted
747 version: "2.0.8" 768 version: "2.0.8"
748 path_provider_linux: 769 path_provider_linux:
749 dependency: transitive 770 dependency: transitive
750 description: 771 description:
751 name: path_provider_linux 772 name: path_provider_linux
752 - url: "https://pub.dartlang.org" 773 + url: "https://pub.flutter-io.cn"
753 source: hosted 774 source: hosted
754 version: "2.1.5" 775 version: "2.1.5"
755 path_provider_macos: 776 path_provider_macos:
756 dependency: transitive 777 dependency: transitive
757 description: 778 description:
758 name: path_provider_macos 779 name: path_provider_macos
759 - url: "https://pub.dartlang.org" 780 + url: "https://pub.flutter-io.cn"
760 source: hosted 781 source: hosted
761 version: "2.0.5" 782 version: "2.0.5"
762 path_provider_platform_interface: 783 path_provider_platform_interface:
763 dependency: transitive 784 dependency: transitive
764 description: 785 description:
765 name: path_provider_platform_interface 786 name: path_provider_platform_interface
766 - url: "https://pub.dartlang.org" 787 + url: "https://pub.flutter-io.cn"
767 source: hosted 788 source: hosted
768 version: "2.0.3" 789 version: "2.0.3"
769 path_provider_windows: 790 path_provider_windows:
770 dependency: transitive 791 dependency: transitive
771 description: 792 description:
772 name: path_provider_windows 793 name: path_provider_windows
773 - url: "https://pub.dartlang.org" 794 + url: "https://pub.flutter-io.cn"
774 source: hosted 795 source: hosted
775 version: "2.0.5" 796 version: "2.0.5"
776 pausable_timer: 797 pausable_timer:
777 dependency: "direct main" 798 dependency: "direct main"
778 description: 799 description:
779 name: pausable_timer 800 name: pausable_timer
780 - url: "https://pub.dartlang.org" 801 + url: "https://pub.flutter-io.cn"
781 source: hosted 802 source: hosted
782 version: "1.0.0+4" 803 version: "1.0.0+4"
783 pedantic: 804 pedantic:
784 dependency: transitive 805 dependency: transitive
785 description: 806 description:
786 name: pedantic 807 name: pedantic
787 - url: "https://pub.dartlang.org" 808 + url: "https://pub.flutter-io.cn"
788 source: hosted 809 source: hosted
789 version: "1.11.1" 810 version: "1.11.1"
790 permission_handler: 811 permission_handler:
791 dependency: "direct dev" 812 dependency: "direct dev"
792 description: 813 description:
793 name: permission_handler 814 name: permission_handler
794 - url: "https://pub.dartlang.org" 815 + url: "https://pub.flutter-io.cn"
795 source: hosted 816 source: hosted
796 version: "9.2.0" 817 version: "9.2.0"
797 permission_handler_android: 818 permission_handler_android:
798 dependency: transitive 819 dependency: transitive
799 description: 820 description:
800 name: permission_handler_android 821 name: permission_handler_android
801 - url: "https://pub.dartlang.org" 822 + url: "https://pub.flutter-io.cn"
802 source: hosted 823 source: hosted
803 version: "9.0.2+1" 824 version: "9.0.2+1"
804 permission_handler_apple: 825 permission_handler_apple:
805 dependency: transitive 826 dependency: transitive
806 description: 827 description:
807 name: permission_handler_apple 828 name: permission_handler_apple
808 - url: "https://pub.dartlang.org" 829 + url: "https://pub.flutter-io.cn"
809 source: hosted 830 source: hosted
810 version: "9.0.4" 831 version: "9.0.4"
811 permission_handler_platform_interface: 832 permission_handler_platform_interface:
812 dependency: transitive 833 dependency: transitive
813 description: 834 description:
814 name: permission_handler_platform_interface 835 name: permission_handler_platform_interface
815 - url: "https://pub.dartlang.org" 836 + url: "https://pub.flutter-io.cn"
816 source: hosted 837 source: hosted
817 version: "3.7.0" 838 version: "3.7.0"
818 permission_handler_windows: 839 permission_handler_windows:
819 dependency: transitive 840 dependency: transitive
820 description: 841 description:
821 name: permission_handler_windows 842 name: permission_handler_windows
822 - url: "https://pub.dartlang.org" 843 + url: "https://pub.flutter-io.cn"
823 source: hosted 844 source: hosted
824 version: "0.1.0" 845 version: "0.1.0"
825 petitparser: 846 petitparser:
826 dependency: transitive 847 dependency: transitive
827 description: 848 description:
828 name: petitparser 849 name: petitparser
829 - url: "https://pub.dartlang.org" 850 + url: "https://pub.flutter-io.cn"
830 source: hosted 851 source: hosted
831 version: "4.4.0" 852 version: "4.4.0"
832 platform: 853 platform:
833 dependency: transitive 854 dependency: transitive
834 description: 855 description:
835 name: platform 856 name: platform
836 - url: "https://pub.dartlang.org" 857 + url: "https://pub.flutter-io.cn"
837 source: hosted 858 source: hosted
838 version: "3.1.0" 859 version: "3.1.0"
839 plugin_platform_interface: 860 plugin_platform_interface:
840 dependency: transitive 861 dependency: transitive
841 description: 862 description:
842 name: plugin_platform_interface 863 name: plugin_platform_interface
843 - url: "https://pub.dartlang.org" 864 + url: "https://pub.flutter-io.cn"
844 source: hosted 865 source: hosted
845 version: "2.1.2" 866 version: "2.1.2"
846 pool: 867 pool:
847 dependency: transitive 868 dependency: transitive
848 description: 869 description:
849 name: pool 870 name: pool
850 - url: "https://pub.dartlang.org" 871 + url: "https://pub.flutter-io.cn"
851 source: hosted 872 source: hosted
852 version: "1.5.0" 873 version: "1.5.0"
853 process: 874 process:
854 dependency: transitive 875 dependency: transitive
855 description: 876 description:
856 name: process 877 name: process
857 - url: "https://pub.dartlang.org" 878 + url: "https://pub.flutter-io.cn"
858 source: hosted 879 source: hosted
859 version: "4.2.4" 880 version: "4.2.4"
860 provider: 881 provider:
861 dependency: "direct main" 882 dependency: "direct main"
862 description: 883 description:
863 name: provider 884 name: provider
864 - url: "https://pub.dartlang.org" 885 + url: "https://pub.flutter-io.cn"
865 source: hosted 886 source: hosted
866 version: "6.0.2" 887 version: "6.0.2"
867 pub_semver: 888 pub_semver:
868 dependency: transitive 889 dependency: transitive
869 description: 890 description:
870 name: pub_semver 891 name: pub_semver
871 - url: "https://pub.dartlang.org" 892 + url: "https://pub.flutter-io.cn"
872 source: hosted 893 source: hosted
873 version: "2.1.1" 894 version: "2.1.1"
874 pubspec_parse: 895 pubspec_parse:
875 dependency: transitive 896 dependency: transitive
876 description: 897 description:
877 name: pubspec_parse 898 name: pubspec_parse
878 - url: "https://pub.dartlang.org" 899 + url: "https://pub.flutter-io.cn"
879 source: hosted 900 source: hosted
880 version: "1.2.0" 901 version: "1.2.0"
881 qr_code_scanner: 902 qr_code_scanner:
882 dependency: "direct main" 903 dependency: "direct main"
883 description: 904 description:
884 name: qr_code_scanner 905 name: qr_code_scanner
885 - url: "https://pub.dartlang.org" 906 + url: "https://pub.flutter-io.cn"
886 source: hosted 907 source: hosted
887 version: "0.7.0" 908 version: "0.7.0"
888 quick_actions: 909 quick_actions:
889 dependency: "direct main" 910 dependency: "direct main"
890 description: 911 description:
891 name: quick_actions 912 name: quick_actions
892 - url: "https://pub.dartlang.org" 913 + url: "https://pub.flutter-io.cn"
893 source: hosted 914 source: hosted
894 version: "0.6.0+10" 915 version: "0.6.0+10"
895 quick_actions_android: 916 quick_actions_android:
896 dependency: transitive 917 dependency: transitive
897 description: 918 description:
898 name: quick_actions_android 919 name: quick_actions_android
899 - url: "https://pub.dartlang.org" 920 + url: "https://pub.flutter-io.cn"
900 source: hosted 921 source: hosted
901 version: "0.6.0+9" 922 version: "0.6.0+9"
902 quick_actions_ios: 923 quick_actions_ios:
903 dependency: transitive 924 dependency: transitive
904 description: 925 description:
905 name: quick_actions_ios 926 name: quick_actions_ios
906 - url: "https://pub.dartlang.org" 927 + url: "https://pub.flutter-io.cn"
907 source: hosted 928 source: hosted
908 version: "0.6.0+9" 929 version: "0.6.0+9"
909 quick_actions_platform_interface: 930 quick_actions_platform_interface:
910 dependency: transitive 931 dependency: transitive
911 description: 932 description:
912 name: quick_actions_platform_interface 933 name: quick_actions_platform_interface
913 - url: "https://pub.dartlang.org" 934 + url: "https://pub.flutter-io.cn"
914 source: hosted 935 source: hosted
915 version: "1.0.2" 936 version: "1.0.2"
916 quiver: 937 quiver:
917 dependency: transitive 938 dependency: transitive
918 description: 939 description:
919 name: quiver 940 name: quiver
920 - url: "https://pub.dartlang.org" 941 + url: "https://pub.flutter-io.cn"
921 source: hosted 942 source: hosted
922 - version: "3.0.1+1" 943 + version: "3.1.0"
923 rational: 944 rational:
924 dependency: transitive 945 dependency: transitive
925 description: 946 description:
926 name: rational 947 name: rational
927 - url: "https://pub.dartlang.org" 948 + url: "https://pub.flutter-io.cn"
928 source: hosted 949 source: hosted
929 version: "1.2.1" 950 version: "1.2.1"
930 recase: 951 recase:
931 dependency: transitive 952 dependency: transitive
932 description: 953 description:
933 name: recase 954 name: recase
934 - url: "https://pub.dartlang.org" 955 + url: "https://pub.flutter-io.cn"
935 source: hosted 956 source: hosted
936 version: "4.0.0" 957 version: "4.0.0"
937 rxdart: 958 rxdart:
938 dependency: "direct main" 959 dependency: "direct main"
939 description: 960 description:
940 name: rxdart 961 name: rxdart
941 - url: "https://pub.dartlang.org" 962 + url: "https://pub.flutter-io.cn"
942 source: hosted 963 source: hosted
943 version: "0.27.3" 964 version: "0.27.3"
944 safemap: 965 safemap:
945 dependency: "direct main" 966 dependency: "direct main"
946 description: 967 description:
947 name: safemap 968 name: safemap
948 - url: "https://pub.dartlang.org" 969 + url: "https://pub.flutter-io.cn"
949 source: hosted 970 source: hosted
950 version: "2.1.0" 971 version: "2.1.0"
951 shared_preferences: 972 shared_preferences:
952 dependency: transitive 973 dependency: transitive
953 description: 974 description:
954 name: shared_preferences 975 name: shared_preferences
955 - url: "https://pub.dartlang.org" 976 + url: "https://pub.flutter-io.cn"
956 source: hosted 977 source: hosted
957 version: "2.0.13" 978 version: "2.0.13"
958 shared_preferences_android: 979 shared_preferences_android:
959 dependency: transitive 980 dependency: transitive
960 description: 981 description:
961 name: shared_preferences_android 982 name: shared_preferences_android
962 - url: "https://pub.dartlang.org" 983 + url: "https://pub.flutter-io.cn"
963 source: hosted 984 source: hosted
964 version: "2.0.11" 985 version: "2.0.11"
965 shared_preferences_ios: 986 shared_preferences_ios:
966 dependency: transitive 987 dependency: transitive
967 description: 988 description:
968 name: shared_preferences_ios 989 name: shared_preferences_ios
969 - url: "https://pub.dartlang.org" 990 + url: "https://pub.flutter-io.cn"
970 source: hosted 991 source: hosted
971 version: "2.1.0" 992 version: "2.1.0"
972 shared_preferences_linux: 993 shared_preferences_linux:
973 dependency: transitive 994 dependency: transitive
974 description: 995 description:
975 name: shared_preferences_linux 996 name: shared_preferences_linux
976 - url: "https://pub.dartlang.org" 997 + url: "https://pub.flutter-io.cn"
977 source: hosted 998 source: hosted
978 version: "2.1.0" 999 version: "2.1.0"
979 shared_preferences_macos: 1000 shared_preferences_macos:
980 dependency: transitive 1001 dependency: transitive
981 description: 1002 description:
982 name: shared_preferences_macos 1003 name: shared_preferences_macos
983 - url: "https://pub.dartlang.org" 1004 + url: "https://pub.flutter-io.cn"
984 source: hosted 1005 source: hosted
985 version: "2.0.3" 1006 version: "2.0.3"
986 shared_preferences_platform_interface: 1007 shared_preferences_platform_interface:
987 dependency: transitive 1008 dependency: transitive
988 description: 1009 description:
989 name: shared_preferences_platform_interface 1010 name: shared_preferences_platform_interface
990 - url: "https://pub.dartlang.org" 1011 + url: "https://pub.flutter-io.cn"
991 source: hosted 1012 source: hosted
992 version: "2.0.0" 1013 version: "2.0.0"
993 shared_preferences_web: 1014 shared_preferences_web:
994 dependency: transitive 1015 dependency: transitive
995 description: 1016 description:
996 name: shared_preferences_web 1017 name: shared_preferences_web
997 - url: "https://pub.dartlang.org" 1018 + url: "https://pub.flutter-io.cn"
998 source: hosted 1019 source: hosted
999 version: "2.0.3" 1020 version: "2.0.3"
1000 shared_preferences_windows: 1021 shared_preferences_windows:
1001 dependency: transitive 1022 dependency: transitive
1002 description: 1023 description:
1003 name: shared_preferences_windows 1024 name: shared_preferences_windows
1004 - url: "https://pub.dartlang.org" 1025 + url: "https://pub.flutter-io.cn"
1005 source: hosted 1026 source: hosted
1006 version: "2.1.0" 1027 version: "2.1.0"
1007 shelf: 1028 shelf:
1008 dependency: transitive 1029 dependency: transitive
1009 description: 1030 description:
1010 name: shelf 1031 name: shelf
1011 - url: "https://pub.dartlang.org" 1032 + url: "https://pub.flutter-io.cn"
1012 source: hosted 1033 source: hosted
1013 version: "1.3.0" 1034 version: "1.3.0"
1014 shelf_packages_handler: 1035 shelf_packages_handler:
1015 dependency: transitive 1036 dependency: transitive
1016 description: 1037 description:
1017 name: shelf_packages_handler 1038 name: shelf_packages_handler
1018 - url: "https://pub.dartlang.org" 1039 + url: "https://pub.flutter-io.cn"
1019 source: hosted 1040 source: hosted
1020 version: "3.0.0" 1041 version: "3.0.0"
1021 shelf_static: 1042 shelf_static:
1022 dependency: transitive 1043 dependency: transitive
1023 description: 1044 description:
1024 name: shelf_static 1045 name: shelf_static
1025 - url: "https://pub.dartlang.org" 1046 + url: "https://pub.flutter-io.cn"
1026 source: hosted 1047 source: hosted
1027 version: "1.1.0" 1048 version: "1.1.0"
1028 shelf_web_socket: 1049 shelf_web_socket:
1029 dependency: transitive 1050 dependency: transitive
1030 description: 1051 description:
1031 name: shelf_web_socket 1052 name: shelf_web_socket
1032 - url: "https://pub.dartlang.org" 1053 + url: "https://pub.flutter-io.cn"
1033 source: hosted 1054 source: hosted
1034 version: "1.0.1" 1055 version: "1.0.1"
1035 sign_in_with_apple: 1056 sign_in_with_apple:
1036 dependency: "direct main" 1057 dependency: "direct main"
1037 description: 1058 description:
1038 name: sign_in_with_apple 1059 name: sign_in_with_apple
1039 - url: "https://pub.dartlang.org" 1060 + url: "https://pub.flutter-io.cn"
1040 source: hosted 1061 source: hosted
1041 version: "3.3.0" 1062 version: "3.3.0"
1042 sign_in_with_apple_platform_interface: 1063 sign_in_with_apple_platform_interface:
1043 dependency: transitive 1064 dependency: transitive
1044 description: 1065 description:
1045 name: sign_in_with_apple_platform_interface 1066 name: sign_in_with_apple_platform_interface
1046 - url: "https://pub.dartlang.org" 1067 + url: "https://pub.flutter-io.cn"
1047 source: hosted 1068 source: hosted
1048 version: "1.0.0" 1069 version: "1.0.0"
1049 sign_in_with_apple_web: 1070 sign_in_with_apple_web:
1050 dependency: transitive 1071 dependency: transitive
1051 description: 1072 description:
1052 name: sign_in_with_apple_web 1073 name: sign_in_with_apple_web
1053 - url: "https://pub.dartlang.org" 1074 + url: "https://pub.flutter-io.cn"
1054 source: hosted 1075 source: hosted
1055 version: "1.0.1" 1076 version: "1.0.1"
1056 sky_engine: 1077 sky_engine:
...@@ -1062,385 +1083,385 @@ packages: ...@@ -1062,385 +1083,385 @@ packages:
1062 dependency: transitive 1083 dependency: transitive
1063 description: 1084 description:
1064 name: source_gen 1085 name: source_gen
1065 - url: "https://pub.dartlang.org" 1086 + url: "https://pub.flutter-io.cn"
1066 source: hosted 1087 source: hosted
1067 version: "1.2.2" 1088 version: "1.2.2"
1068 source_helper: 1089 source_helper:
1069 dependency: transitive 1090 dependency: transitive
1070 description: 1091 description:
1071 name: source_helper 1092 name: source_helper
1072 - url: "https://pub.dartlang.org" 1093 + url: "https://pub.flutter-io.cn"
1073 source: hosted 1094 source: hosted
1074 version: "1.3.2" 1095 version: "1.3.2"
1075 source_map_stack_trace: 1096 source_map_stack_trace:
1076 dependency: transitive 1097 dependency: transitive
1077 description: 1098 description:
1078 name: source_map_stack_trace 1099 name: source_map_stack_trace
1079 - url: "https://pub.dartlang.org" 1100 + url: "https://pub.flutter-io.cn"
1080 source: hosted 1101 source: hosted
1081 version: "2.1.0" 1102 version: "2.1.0"
1082 source_maps: 1103 source_maps:
1083 dependency: transitive 1104 dependency: transitive
1084 description: 1105 description:
1085 name: source_maps 1106 name: source_maps
1086 - url: "https://pub.dartlang.org" 1107 + url: "https://pub.flutter-io.cn"
1087 source: hosted 1108 source: hosted
1088 version: "0.10.10" 1109 version: "0.10.10"
1089 source_span: 1110 source_span:
1090 dependency: transitive 1111 dependency: transitive
1091 description: 1112 description:
1092 name: source_span 1113 name: source_span
1093 - url: "https://pub.dartlang.org" 1114 + url: "https://pub.flutter-io.cn"
1094 source: hosted 1115 source: hosted
1095 version: "1.8.1" 1116 version: "1.8.1"
1096 sp_util: 1117 sp_util:
1097 dependency: transitive 1118 dependency: transitive
1098 description: 1119 description:
1099 name: sp_util 1120 name: sp_util
1100 - url: "https://pub.dartlang.org" 1121 + url: "https://pub.flutter-io.cn"
1101 source: hosted 1122 source: hosted
1102 version: "2.0.3" 1123 version: "2.0.3"
1103 sprintf: 1124 sprintf:
1104 dependency: "direct main" 1125 dependency: "direct main"
1105 description: 1126 description:
1106 name: sprintf 1127 name: sprintf
1107 - url: "https://pub.dartlang.org" 1128 + url: "https://pub.flutter-io.cn"
1108 source: hosted 1129 source: hosted
1109 version: "6.0.0" 1130 version: "6.0.0"
1110 sqflite: 1131 sqflite:
1111 dependency: transitive 1132 dependency: transitive
1112 description: 1133 description:
1113 name: sqflite 1134 name: sqflite
1114 - url: "https://pub.dartlang.org" 1135 + url: "https://pub.flutter-io.cn"
1115 source: hosted 1136 source: hosted
1116 version: "2.0.2+1" 1137 version: "2.0.2+1"
1117 sqflite_common: 1138 sqflite_common:
1118 dependency: transitive 1139 dependency: transitive
1119 description: 1140 description:
1120 name: sqflite_common 1141 name: sqflite_common
1121 - url: "https://pub.dartlang.org" 1142 + url: "https://pub.flutter-io.cn"
1122 source: hosted 1143 source: hosted
1123 version: "2.2.1+1" 1144 version: "2.2.1+1"
1124 stack_trace: 1145 stack_trace:
1125 dependency: transitive 1146 dependency: transitive
1126 description: 1147 description:
1127 name: stack_trace 1148 name: stack_trace
1128 - url: "https://pub.dartlang.org" 1149 + url: "https://pub.flutter-io.cn"
1129 source: hosted 1150 source: hosted
1130 version: "1.10.0" 1151 version: "1.10.0"
1131 sticky_headers: 1152 sticky_headers:
1132 dependency: "direct main" 1153 dependency: "direct main"
1133 description: 1154 description:
1134 name: sticky_headers 1155 name: sticky_headers
1135 - url: "https://pub.dartlang.org" 1156 + url: "https://pub.flutter-io.cn"
1136 source: hosted 1157 source: hosted
1137 version: "0.2.0" 1158 version: "0.2.0"
1138 stream_channel: 1159 stream_channel:
1139 dependency: transitive 1160 dependency: transitive
1140 description: 1161 description:
1141 name: stream_channel 1162 name: stream_channel
1142 - url: "https://pub.dartlang.org" 1163 + url: "https://pub.flutter-io.cn"
1143 source: hosted 1164 source: hosted
1144 version: "2.1.0" 1165 version: "2.1.0"
1145 stream_transform: 1166 stream_transform:
1146 dependency: transitive 1167 dependency: transitive
1147 description: 1168 description:
1148 name: stream_transform 1169 name: stream_transform
1149 - url: "https://pub.dartlang.org" 1170 + url: "https://pub.flutter-io.cn"
1150 source: hosted 1171 source: hosted
1151 version: "2.0.0" 1172 version: "2.0.0"
1152 string_scanner: 1173 string_scanner:
1153 dependency: transitive 1174 dependency: transitive
1154 description: 1175 description:
1155 name: string_scanner 1176 name: string_scanner
1156 - url: "https://pub.dartlang.org" 1177 + url: "https://pub.flutter-io.cn"
1157 source: hosted 1178 source: hosted
1158 version: "1.1.0" 1179 version: "1.1.0"
1159 sync_http: 1180 sync_http:
1160 dependency: transitive 1181 dependency: transitive
1161 description: 1182 description:
1162 name: sync_http 1183 name: sync_http
1163 - url: "https://pub.dartlang.org" 1184 + url: "https://pub.flutter-io.cn"
1164 source: hosted 1185 source: hosted
1165 version: "0.3.0" 1186 version: "0.3.0"
1166 synchronized: 1187 synchronized:
1167 dependency: transitive 1188 dependency: transitive
1168 description: 1189 description:
1169 name: synchronized 1190 name: synchronized
1170 - url: "https://pub.dartlang.org" 1191 + url: "https://pub.flutter-io.cn"
1171 source: hosted 1192 source: hosted
1172 version: "3.0.0+2" 1193 version: "3.0.0+2"
1173 tapped: 1194 tapped:
1174 dependency: "direct main" 1195 dependency: "direct main"
1175 description: 1196 description:
1176 name: tapped 1197 name: tapped
1177 - url: "https://pub.dartlang.org" 1198 + url: "https://pub.flutter-io.cn"
1178 source: hosted 1199 source: hosted
1179 version: "2.0.0" 1200 version: "2.0.0"
1180 term_glyph: 1201 term_glyph:
1181 dependency: transitive 1202 dependency: transitive
1182 description: 1203 description:
1183 name: term_glyph 1204 name: term_glyph
1184 - url: "https://pub.dartlang.org" 1205 + url: "https://pub.flutter-io.cn"
1185 source: hosted 1206 source: hosted
1186 version: "1.2.0" 1207 version: "1.2.0"
1187 test: 1208 test:
1188 dependency: "direct dev" 1209 dependency: "direct dev"
1189 description: 1210 description:
1190 name: test 1211 name: test
1191 - url: "https://pub.dartlang.org" 1212 + url: "https://pub.flutter-io.cn"
1192 source: hosted 1213 source: hosted
1193 version: "1.19.5" 1214 version: "1.19.5"
1194 test_api: 1215 test_api:
1195 dependency: transitive 1216 dependency: transitive
1196 description: 1217 description:
1197 name: test_api 1218 name: test_api
1198 - url: "https://pub.dartlang.org" 1219 + url: "https://pub.flutter-io.cn"
1199 source: hosted 1220 source: hosted
1200 version: "0.4.8" 1221 version: "0.4.8"
1201 test_core: 1222 test_core:
1202 dependency: transitive 1223 dependency: transitive
1203 description: 1224 description:
1204 name: test_core 1225 name: test_core
1205 - url: "https://pub.dartlang.org" 1226 + url: "https://pub.flutter-io.cn"
1206 source: hosted 1227 source: hosted
1207 version: "0.4.9" 1228 version: "0.4.9"
1208 timing: 1229 timing:
1209 dependency: transitive 1230 dependency: transitive
1210 description: 1231 description:
1211 name: timing 1232 name: timing
1212 - url: "https://pub.dartlang.org" 1233 + url: "https://pub.flutter-io.cn"
1213 source: hosted 1234 source: hosted
1214 version: "1.0.0" 1235 version: "1.0.0"
1215 typed_data: 1236 typed_data:
1216 dependency: transitive 1237 dependency: transitive
1217 description: 1238 description:
1218 name: typed_data 1239 name: typed_data
1219 - url: "https://pub.dartlang.org" 1240 + url: "https://pub.flutter-io.cn"
1220 source: hosted 1241 source: hosted
1221 version: "1.3.0" 1242 version: "1.3.0"
1222 universal_io: 1243 universal_io:
1223 dependency: transitive 1244 dependency: transitive
1224 description: 1245 description:
1225 name: universal_io 1246 name: universal_io
1226 - url: "https://pub.dartlang.org" 1247 + url: "https://pub.flutter-io.cn"
1227 source: hosted 1248 source: hosted
1228 version: "2.0.4" 1249 version: "2.0.4"
1229 url_launcher: 1250 url_launcher:
1230 dependency: "direct main" 1251 dependency: "direct main"
1231 description: 1252 description:
1232 name: url_launcher 1253 name: url_launcher
1233 - url: "https://pub.dartlang.org" 1254 + url: "https://pub.flutter-io.cn"
1234 source: hosted 1255 source: hosted
1235 version: "6.1.0" 1256 version: "6.1.0"
1236 url_launcher_android: 1257 url_launcher_android:
1237 dependency: transitive 1258 dependency: transitive
1238 description: 1259 description:
1239 name: url_launcher_android 1260 name: url_launcher_android
1240 - url: "https://pub.dartlang.org" 1261 + url: "https://pub.flutter-io.cn"
1241 source: hosted 1262 source: hosted
1242 - version: "6.0.15" 1263 + version: "6.0.16"
1243 url_launcher_ios: 1264 url_launcher_ios:
1244 dependency: transitive 1265 dependency: transitive
1245 description: 1266 description:
1246 name: url_launcher_ios 1267 name: url_launcher_ios
1247 - url: "https://pub.dartlang.org" 1268 + url: "https://pub.flutter-io.cn"
1248 source: hosted 1269 source: hosted
1249 version: "6.0.15" 1270 version: "6.0.15"
1250 url_launcher_linux: 1271 url_launcher_linux:
1251 dependency: transitive 1272 dependency: transitive
1252 description: 1273 description:
1253 name: url_launcher_linux 1274 name: url_launcher_linux
1254 - url: "https://pub.dartlang.org" 1275 + url: "https://pub.flutter-io.cn"
1255 source: hosted 1276 source: hosted
1256 version: "3.0.0" 1277 version: "3.0.0"
1257 url_launcher_macos: 1278 url_launcher_macos:
1258 dependency: transitive 1279 dependency: transitive
1259 description: 1280 description:
1260 name: url_launcher_macos 1281 name: url_launcher_macos
1261 - url: "https://pub.dartlang.org" 1282 + url: "https://pub.flutter-io.cn"
1262 source: hosted 1283 source: hosted
1263 version: "3.0.0" 1284 version: "3.0.0"
1264 url_launcher_platform_interface: 1285 url_launcher_platform_interface:
1265 dependency: transitive 1286 dependency: transitive
1266 description: 1287 description:
1267 name: url_launcher_platform_interface 1288 name: url_launcher_platform_interface
1268 - url: "https://pub.dartlang.org" 1289 + url: "https://pub.flutter-io.cn"
1269 source: hosted 1290 source: hosted
1270 version: "2.0.5" 1291 version: "2.0.5"
1271 url_launcher_web: 1292 url_launcher_web:
1272 dependency: transitive 1293 dependency: transitive
1273 description: 1294 description:
1274 name: url_launcher_web 1295 name: url_launcher_web
1275 - url: "https://pub.dartlang.org" 1296 + url: "https://pub.flutter-io.cn"
1276 source: hosted 1297 source: hosted
1277 version: "2.0.9" 1298 version: "2.0.9"
1278 url_launcher_windows: 1299 url_launcher_windows:
1279 dependency: transitive 1300 dependency: transitive
1280 description: 1301 description:
1281 name: url_launcher_windows 1302 name: url_launcher_windows
1282 - url: "https://pub.dartlang.org" 1303 + url: "https://pub.flutter-io.cn"
1283 source: hosted 1304 source: hosted
1284 version: "3.0.0" 1305 version: "3.0.0"
1285 url_strategy: 1306 url_strategy:
1286 dependency: "direct main" 1307 dependency: "direct main"
1287 description: 1308 description:
1288 name: url_strategy 1309 name: url_strategy
1289 - url: "https://pub.dartlang.org" 1310 + url: "https://pub.flutter-io.cn"
1290 source: hosted 1311 source: hosted
1291 version: "0.2.0" 1312 version: "0.2.0"
1292 uuid: 1313 uuid:
1293 dependency: transitive 1314 dependency: transitive
1294 description: 1315 description:
1295 name: uuid 1316 name: uuid
1296 - url: "https://pub.dartlang.org" 1317 + url: "https://pub.flutter-io.cn"
1297 source: hosted 1318 source: hosted
1298 version: "3.0.6" 1319 version: "3.0.6"
1299 vector_math: 1320 vector_math:
1300 dependency: transitive 1321 dependency: transitive
1301 description: 1322 description:
1302 name: vector_math 1323 name: vector_math
1303 - url: "https://pub.dartlang.org" 1324 + url: "https://pub.flutter-io.cn"
1304 source: hosted 1325 source: hosted
1305 version: "2.1.1" 1326 version: "2.1.1"
1306 vibration: 1327 vibration:
1307 dependency: "direct main" 1328 dependency: "direct main"
1308 description: 1329 description:
1309 name: vibration 1330 name: vibration
1310 - url: "https://pub.dartlang.org" 1331 + url: "https://pub.flutter-io.cn"
1311 source: hosted 1332 source: hosted
1312 version: "1.7.4-nullsafety.0" 1333 version: "1.7.4-nullsafety.0"
1313 vibration_web: 1334 vibration_web:
1314 dependency: transitive 1335 dependency: transitive
1315 description: 1336 description:
1316 name: vibration_web 1337 name: vibration_web
1317 - url: "https://pub.dartlang.org" 1338 + url: "https://pub.flutter-io.cn"
1318 source: hosted 1339 source: hosted
1319 version: "1.6.3-nullsafety.0" 1340 version: "1.6.3-nullsafety.0"
1320 video_player: 1341 video_player:
1321 dependency: "direct main" 1342 dependency: "direct main"
1322 description: 1343 description:
1323 name: video_player 1344 name: video_player
1324 - url: "https://pub.dartlang.org" 1345 + url: "https://pub.flutter-io.cn"
1325 source: hosted 1346 source: hosted
1326 version: "2.4.0" 1347 version: "2.4.0"
1327 video_player_android: 1348 video_player_android:
1328 dependency: transitive 1349 dependency: transitive
1329 description: 1350 description:
1330 name: video_player_android 1351 name: video_player_android
1331 - url: "https://pub.dartlang.org" 1352 + url: "https://pub.flutter-io.cn"
1332 source: hosted 1353 source: hosted
1333 version: "2.3.2" 1354 version: "2.3.2"
1334 video_player_avfoundation: 1355 video_player_avfoundation:
1335 dependency: transitive 1356 dependency: transitive
1336 description: 1357 description:
1337 name: video_player_avfoundation 1358 name: video_player_avfoundation
1338 - url: "https://pub.dartlang.org" 1359 + url: "https://pub.flutter-io.cn"
1339 source: hosted 1360 source: hosted
1340 - version: "2.3.2" 1361 + version: "2.3.3"
1341 video_player_platform_interface: 1362 video_player_platform_interface:
1342 dependency: transitive 1363 dependency: transitive
1343 description: 1364 description:
1344 name: video_player_platform_interface 1365 name: video_player_platform_interface
1345 - url: "https://pub.dartlang.org" 1366 + url: "https://pub.flutter-io.cn"
1346 source: hosted 1367 source: hosted
1347 version: "5.1.2" 1368 version: "5.1.2"
1348 video_player_web: 1369 video_player_web:
1349 dependency: transitive 1370 dependency: transitive
1350 description: 1371 description:
1351 name: video_player_web 1372 name: video_player_web
1352 - url: "https://pub.dartlang.org" 1373 + url: "https://pub.flutter-io.cn"
1353 source: hosted 1374 source: hosted
1354 version: "2.0.8" 1375 version: "2.0.8"
1355 vm_service: 1376 vm_service:
1356 dependency: transitive 1377 dependency: transitive
1357 description: 1378 description:
1358 name: vm_service 1379 name: vm_service
1359 - url: "https://pub.dartlang.org" 1380 + url: "https://pub.flutter-io.cn"
1360 source: hosted 1381 source: hosted
1361 version: "7.5.0" 1382 version: "7.5.0"
1362 watcher: 1383 watcher:
1363 dependency: transitive 1384 dependency: transitive
1364 description: 1385 description:
1365 name: watcher 1386 name: watcher
1366 - url: "https://pub.dartlang.org" 1387 + url: "https://pub.flutter-io.cn"
1367 source: hosted 1388 source: hosted
1368 version: "1.0.1" 1389 version: "1.0.1"
1369 web_socket_channel: 1390 web_socket_channel:
1370 dependency: transitive 1391 dependency: transitive
1371 description: 1392 description:
1372 name: web_socket_channel 1393 name: web_socket_channel
1373 - url: "https://pub.dartlang.org" 1394 + url: "https://pub.flutter-io.cn"
1374 source: hosted 1395 source: hosted
1375 - version: "2.1.0" 1396 + version: "2.2.0"
1376 webdriver: 1397 webdriver:
1377 dependency: transitive 1398 dependency: transitive
1378 description: 1399 description:
1379 name: webdriver 1400 name: webdriver
1380 - url: "https://pub.dartlang.org" 1401 + url: "https://pub.flutter-io.cn"
1381 source: hosted 1402 source: hosted
1382 version: "3.0.0" 1403 version: "3.0.0"
1383 webkit_inspection_protocol: 1404 webkit_inspection_protocol:
1384 dependency: transitive 1405 dependency: transitive
1385 description: 1406 description:
1386 name: webkit_inspection_protocol 1407 name: webkit_inspection_protocol
1387 - url: "https://pub.dartlang.org" 1408 + url: "https://pub.flutter-io.cn"
1388 source: hosted 1409 source: hosted
1389 version: "1.0.0" 1410 version: "1.0.0"
1390 webview_flutter: 1411 webview_flutter:
1391 dependency: "direct main" 1412 dependency: "direct main"
1392 description: 1413 description:
1393 name: webview_flutter 1414 name: webview_flutter
1394 - url: "https://pub.dartlang.org" 1415 + url: "https://pub.flutter-io.cn"
1395 source: hosted 1416 source: hosted
1396 version: "3.0.2" 1417 version: "3.0.2"
1397 webview_flutter_android: 1418 webview_flutter_android:
1398 dependency: transitive 1419 dependency: transitive
1399 description: 1420 description:
1400 name: webview_flutter_android 1421 name: webview_flutter_android
1401 - url: "https://pub.dartlang.org" 1422 + url: "https://pub.flutter-io.cn"
1402 source: hosted 1423 source: hosted
1403 - version: "2.8.5" 1424 + version: "2.8.6"
1404 webview_flutter_platform_interface: 1425 webview_flutter_platform_interface:
1405 dependency: transitive 1426 dependency: transitive
1406 description: 1427 description:
1407 name: webview_flutter_platform_interface 1428 name: webview_flutter_platform_interface
1408 - url: "https://pub.dartlang.org" 1429 + url: "https://pub.flutter-io.cn"
1409 source: hosted 1430 source: hosted
1410 version: "1.8.1" 1431 version: "1.8.1"
1411 webview_flutter_wkwebview: 1432 webview_flutter_wkwebview:
1412 dependency: transitive 1433 dependency: transitive
1413 description: 1434 description:
1414 name: webview_flutter_wkwebview 1435 name: webview_flutter_wkwebview
1415 - url: "https://pub.dartlang.org" 1436 + url: "https://pub.flutter-io.cn"
1416 source: hosted 1437 source: hosted
1417 - version: "2.7.2" 1438 + version: "2.7.3"
1418 win32: 1439 win32:
1419 dependency: transitive 1440 dependency: transitive
1420 description: 1441 description:
1421 name: win32 1442 name: win32
1422 - url: "https://pub.dartlang.org" 1443 + url: "https://pub.flutter-io.cn"
1423 source: hosted 1444 source: hosted
1424 - version: "2.5.1" 1445 + version: "2.5.2"
1425 xdg_directories: 1446 xdg_directories:
1426 dependency: transitive 1447 dependency: transitive
1427 description: 1448 description:
1428 name: xdg_directories 1449 name: xdg_directories
1429 - url: "https://pub.dartlang.org" 1450 + url: "https://pub.flutter-io.cn"
1430 source: hosted 1451 source: hosted
1431 version: "0.2.0+1" 1452 version: "0.2.0+1"
1432 xml: 1453 xml:
1433 dependency: transitive 1454 dependency: transitive
1434 description: 1455 description:
1435 name: xml 1456 name: xml
1436 - url: "https://pub.dartlang.org" 1457 + url: "https://pub.flutter-io.cn"
1437 source: hosted 1458 source: hosted
1438 version: "5.3.1" 1459 version: "5.3.1"
1439 yaml: 1460 yaml:
1440 dependency: transitive 1461 dependency: transitive
1441 description: 1462 description:
1442 name: yaml 1463 name: yaml
1443 - url: "https://pub.dartlang.org" 1464 + url: "https://pub.flutter-io.cn"
1444 source: hosted 1465 source: hosted
1445 version: "3.1.0" 1466 version: "3.1.0"
1446 sdks: 1467 sdks:
......