reason

clear

1 +import 'package:Parlando/net/dio_utils.dart';
2 +import 'package:Parlando/net/http_api.dart';
3 +import 'package:Parlando/res/constant.dart';
4 +import 'package:Parlando/util/toast_utils.dart';
1 import 'package:flutter/material.dart'; 5 import 'package:flutter/material.dart';
2 import 'package:Parlando/membership/membership_router.dart'; 6 import 'package:Parlando/membership/membership_router.dart';
3 import 'package:Parlando/poem/poem_router.dart'; 7 import 'package:Parlando/poem/poem_router.dart';
...@@ -31,6 +35,25 @@ class AccountPage extends StatefulWidget { ...@@ -31,6 +35,25 @@ class AccountPage extends StatefulWidget {
31 35
32 class _AccountPageState extends State<AccountPage> { 36 class _AccountPageState extends State<AccountPage> {
33 @override 37 @override
38 + void initState() {
39 + super.initState();
40 +
41 + //todo MVVM?
42 + Map<String, String> params = <String, String>{
43 + "profile": "1",
44 + };
45 + DioUtils.instance.asyncRequestNetwork(
46 + Method.post,
47 + HttpApi.login,
48 + queryParameters: params,
49 + onSuccess: (data) {},
50 + onError: (code, msg) {
51 + Toast.show(msg.toString());
52 + },
53 + );
54 + }
55 +
56 + @override
34 Widget build(BuildContext context) { 57 Widget build(BuildContext context) {
35 Widget likeButton = Container( 58 Widget likeButton = Container(
36 color: ColorPlate.white, 59 color: ColorPlate.white,
...@@ -248,37 +271,9 @@ class _MembershipButton extends StatelessWidget { ...@@ -248,37 +271,9 @@ class _MembershipButton extends StatelessWidget {
248 } 271 }
249 } 272 }
250 273
251 -class _UserRightButton extends StatelessWidget {
252 - const _UserRightButton({
253 - Key? key,
254 - required this.title,
255 - }) : super(key: key);
256 -
257 - final String title;
258 -
259 - @override
260 - Widget build(BuildContext context) {
261 - return Container(
262 - padding: EdgeInsets.symmetric(
263 - vertical: 3.px,
264 - horizontal: 12.px,
265 - ),
266 - margin: EdgeInsets.all(8.px),
267 - alignment: Alignment.center,
268 - child: Text(
269 - title,
270 - style: const TextStyle(color: ColorPlate.orange),
271 - ),
272 - decoration: BoxDecoration(
273 - border: Border.all(color: ColorPlate.orange),
274 - borderRadius: BorderRadius.circular(4.px),
275 - ),
276 - );
277 - }
278 -}
279 -
280 class _UserTag extends StatelessWidget { 274 class _UserTag extends StatelessWidget {
281 final String? tag; 275 final String? tag;
276 +
282 const _UserTag({ 277 const _UserTag({
283 Key? key, 278 Key? key,
284 this.tag, 279 this.tag,
...@@ -403,8 +398,8 @@ class _PointSelectTextButton extends StatelessWidget { ...@@ -403,8 +398,8 @@ class _PointSelectTextButton extends StatelessWidget {
403 final bool isSelect; 398 final bool isSelect;
404 final String title; 399 final String title;
405 final Function? onTap; 400 final Function? onTap;
406 - const _PointSelectTextButton( 401 +
407 - this.isSelect, 402 + const _PointSelectTextButton(this.isSelect,
408 this.title, { 403 this.title, {
409 Key? key, 404 Key? key,
410 this.onTap, 405 this.onTap,
...@@ -443,8 +438,7 @@ class TextGroup extends StatelessWidget { ...@@ -443,8 +438,7 @@ class TextGroup extends StatelessWidget {
443 final String title, tag; 438 final String title, tag;
444 final Color? color; 439 final Color? color;
445 440
446 - const TextGroup( 441 + const TextGroup(this.title,
447 - this.title,
448 this.tag, { 442 this.tag, {
449 Key? key, 443 Key? key,
450 this.color, 444 this.color,
......
...@@ -126,7 +126,6 @@ class _LoginPageState extends State<LoginPage> ...@@ -126,7 +126,6 @@ class _LoginPageState extends State<LoginPage>
126 } 126 }
127 127
128 void _login() { 128 void _login() {
129 - setState(() {});
130 _isLoading = true; 129 _isLoading = true;
131 setState(() {}); 130 setState(() {});
132 Map<String, String> params = <String, String>{ 131 Map<String, String> params = <String, String>{
......
...@@ -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.flutter-io.cn" 8 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 15 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 22 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 29 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 36 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 43 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 50 + url: "https://pub.dartlang.org"
51 source: hosted 51 source: hosted
52 version: "2.2.1" 52 version: "2.2.1"
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.flutter-io.cn" 57 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 64 + url: "https://pub.dartlang.org"
65 source: hosted 65 source: hosted
66 version: "3.0.1" 66 version: "3.0.1"
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.flutter-io.cn" 71 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 78 + url: "https://pub.dartlang.org"
79 source: hosted 79 source: hosted
80 version: "2.1.8" 80 version: "2.1.8"
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.flutter-io.cn" 85 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 92 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 99 + url: "https://pub.dartlang.org"
100 source: hosted 100 source: hosted
101 version: "8.1.4" 101 version: "8.1.4"
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.flutter-io.cn" 106 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 113 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 120 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 127 + url: "https://pub.dartlang.org"
128 source: hosted 128 source: hosted
129 - version: "0.9.4+18" 129 + version: "0.9.4+19"
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.flutter-io.cn" 134 + url: "https://pub.dartlang.org"
135 source: hosted 135 source: hosted
136 version: "2.1.5" 136 version: "2.1.5"
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.flutter-io.cn" 141 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 148 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 155 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 162 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 169 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 176 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 183 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 190 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 197 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 204 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 211 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 218 + url: "https://pub.dartlang.org"
219 source: hosted 219 source: hosted
220 version: "0.3.2" 220 version: "0.3.2"
221 crypto: 221 crypto:
222 dependency: transitive 222 dependency: transitive
223 description: 223 description:
224 name: crypto 224 name: crypto
225 - url: "https://pub.flutter-io.cn" 225 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 232 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 239 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 246 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 253 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 260 + url: "https://pub.dartlang.org"
261 source: hosted 261 source: hosted
262 - version: "3.2.2" 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.flutter-io.cn" 267 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 274 + url: "https://pub.dartlang.org"
275 source: hosted 275 source: hosted
276 - version: "2.2.2" 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.flutter-io.cn" 281 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 288 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 295 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 302 + url: "https://pub.dartlang.org"
303 source: hosted 303 source: hosted
304 - version: "4.0.5" 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.flutter-io.cn" 309 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 316 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 323 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 330 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 337 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 344 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 351 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 358 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 379 + url: "https://pub.dartlang.org"
380 source: hosted 380 source: hosted
381 version: "0.6.4" 381 version: "0.6.4"
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.flutter-io.cn" 386 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 398 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 405 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 417 + url: "https://pub.dartlang.org"
418 source: hosted 418 source: hosted
419 - version: "2.1.2+1" 419 + version: "2.1.5"
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.flutter-io.cn" 424 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 431 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 438 + url: "https://pub.dartlang.org"
439 source: hosted 439 source: hosted
440 version: "9.1.9" 440 version: "9.1.9"
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.flutter-io.cn" 445 + url: "https://pub.dartlang.org"
446 source: hosted 446 source: hosted
447 version: "9.1.9" 447 version: "9.1.9"
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.flutter-io.cn" 452 + url: "https://pub.dartlang.org"
453 source: hosted 453 source: hosted
454 version: "9.1.9" 454 version: "9.1.9"
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.flutter-io.cn" 459 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 466 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 483 + url: "https://pub.dartlang.org"
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,77 +492,91 @@ packages: ...@@ -492,77 +492,91 @@ packages:
492 dependency: "direct main" 492 dependency: "direct main"
493 description: 493 description:
494 name: getwidget 494 name: getwidget
495 - url: "https://pub.flutter-io.cn" 495 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 502 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 509 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 516 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 523 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 530 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 537 + url: "https://pub.dartlang.org"
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.flutter-io.cn" 544 + url: "https://pub.dartlang.org"
545 source: hosted 545 source: hosted
546 version: "3.1.3" 546 version: "3.1.3"
547 image_picker: 547 image_picker:
548 dependency: "direct main" 548 dependency: "direct main"
549 description: 549 description:
550 name: image_picker 550 name: image_picker
551 - url: "https://pub.flutter-io.cn" 551 + url: "https://pub.dartlang.org"
552 + source: hosted
553 + version: "0.8.5"
554 + image_picker_android:
555 + dependency: transitive
556 + description:
557 + name: image_picker_android
558 + url: "https://pub.dartlang.org"
552 source: hosted 559 source: hosted
553 version: "0.8.4+11" 560 version: "0.8.4+11"
554 image_picker_for_web: 561 image_picker_for_web:
555 dependency: transitive 562 dependency: transitive
556 description: 563 description:
557 name: image_picker_for_web 564 name: image_picker_for_web
558 - url: "https://pub.flutter-io.cn" 565 + url: "https://pub.dartlang.org"
559 source: hosted 566 source: hosted
560 version: "2.1.6" 567 version: "2.1.6"
568 + image_picker_ios:
569 + dependency: transitive
570 + description:
571 + name: image_picker_ios
572 + url: "https://pub.dartlang.org"
573 + source: hosted
574 + version: "0.8.4+11"
561 image_picker_platform_interface: 575 image_picker_platform_interface:
562 dependency: transitive 576 dependency: transitive
563 description: 577 description:
564 name: image_picker_platform_interface 578 name: image_picker_platform_interface
565 - url: "https://pub.flutter-io.cn" 579 + url: "https://pub.dartlang.org"
566 source: hosted 580 source: hosted
567 version: "2.4.4" 581 version: "2.4.4"
568 integration_test: 582 integration_test:
...@@ -574,441 +588,448 @@ packages: ...@@ -574,441 +588,448 @@ packages:
574 dependency: "direct main" 588 dependency: "direct main"
575 description: 589 description:
576 name: intl 590 name: intl
577 - url: "https://pub.flutter-io.cn" 591 + url: "https://pub.dartlang.org"
578 source: hosted 592 source: hosted
579 version: "0.17.0" 593 version: "0.17.0"
580 io: 594 io:
581 dependency: transitive 595 dependency: transitive
582 description: 596 description:
583 name: io 597 name: io
584 - url: "https://pub.flutter-io.cn" 598 + url: "https://pub.dartlang.org"
585 source: hosted 599 source: hosted
586 version: "1.0.3" 600 version: "1.0.3"
587 js: 601 js:
588 dependency: transitive 602 dependency: transitive
589 description: 603 description:
590 name: js 604 name: js
591 - url: "https://pub.flutter-io.cn" 605 + url: "https://pub.dartlang.org"
592 source: hosted 606 source: hosted
593 version: "0.6.3" 607 version: "0.6.3"
594 json_annotation: 608 json_annotation:
595 dependency: "direct main" 609 dependency: "direct main"
596 description: 610 description:
597 name: json_annotation 611 name: json_annotation
598 - url: "https://pub.flutter-io.cn" 612 + url: "https://pub.dartlang.org"
599 source: hosted 613 source: hosted
600 version: "4.4.0" 614 version: "4.4.0"
601 json_serializable: 615 json_serializable:
602 dependency: "direct dev" 616 dependency: "direct dev"
603 description: 617 description:
604 name: json_serializable 618 name: json_serializable
605 - url: "https://pub.flutter-io.cn" 619 + url: "https://pub.dartlang.org"
606 source: hosted 620 source: hosted
607 version: "6.1.5" 621 version: "6.1.5"
608 keyboard_actions: 622 keyboard_actions:
609 dependency: "direct main" 623 dependency: "direct main"
610 description: 624 description:
611 name: keyboard_actions 625 name: keyboard_actions
612 - url: "https://pub.flutter-io.cn" 626 + url: "https://pub.dartlang.org"
613 source: hosted 627 source: hosted
614 version: "3.4.7" 628 version: "3.4.7"
629 + lint:
630 + dependency: transitive
631 + description:
632 + name: lint
633 + url: "https://pub.dartlang.org"
634 + source: hosted
635 + version: "1.8.2"
615 lints: 636 lints:
616 dependency: transitive 637 dependency: transitive
617 description: 638 description:
618 name: lints 639 name: lints
619 - url: "https://pub.flutter-io.cn" 640 + url: "https://pub.dartlang.org"
620 source: hosted 641 source: hosted
621 version: "1.0.1" 642 version: "1.0.1"
622 logger: 643 logger:
623 dependency: transitive 644 dependency: transitive
624 description: 645 description:
625 name: logger 646 name: logger
626 - url: "https://pub.flutter-io.cn" 647 + url: "https://pub.dartlang.org"
627 source: hosted 648 source: hosted
628 version: "1.1.0" 649 version: "1.1.0"
629 logging: 650 logging:
630 dependency: transitive 651 dependency: transitive
631 description: 652 description:
632 name: logging 653 name: logging
633 - url: "https://pub.flutter-io.cn" 654 + url: "https://pub.dartlang.org"
634 source: hosted 655 source: hosted
635 version: "1.0.2" 656 version: "1.0.2"
636 matcher: 657 matcher:
637 dependency: transitive 658 dependency: transitive
638 description: 659 description:
639 name: matcher 660 name: matcher
640 - url: "https://pub.flutter-io.cn" 661 + url: "https://pub.dartlang.org"
641 source: hosted 662 source: hosted
642 version: "0.12.11" 663 version: "0.12.11"
643 material_color_utilities: 664 material_color_utilities:
644 dependency: transitive 665 dependency: transitive
645 description: 666 description:
646 name: material_color_utilities 667 name: material_color_utilities
647 - url: "https://pub.flutter-io.cn" 668 + url: "https://pub.dartlang.org"
648 source: hosted 669 source: hosted
649 version: "0.1.3" 670 version: "0.1.3"
650 meta: 671 meta:
651 dependency: transitive 672 dependency: transitive
652 description: 673 description:
653 name: meta 674 name: meta
654 - url: "https://pub.flutter-io.cn" 675 + url: "https://pub.dartlang.org"
655 source: hosted 676 source: hosted
656 version: "1.7.0" 677 version: "1.7.0"
657 mime: 678 mime:
658 dependency: transitive 679 dependency: transitive
659 description: 680 description:
660 name: mime 681 name: mime
661 - url: "https://pub.flutter-io.cn" 682 + url: "https://pub.dartlang.org"
662 source: hosted 683 source: hosted
663 version: "1.0.1" 684 version: "1.0.1"
664 nested: 685 nested:
665 dependency: transitive 686 dependency: transitive
666 description: 687 description:
667 name: nested 688 name: nested
668 - url: "https://pub.flutter-io.cn" 689 + url: "https://pub.dartlang.org"
669 source: hosted 690 source: hosted
670 version: "1.0.0" 691 version: "1.0.0"
671 node_preamble: 692 node_preamble:
672 dependency: transitive 693 dependency: transitive
673 description: 694 description:
674 name: node_preamble 695 name: node_preamble
675 - url: "https://pub.flutter-io.cn" 696 + url: "https://pub.dartlang.org"
676 source: hosted 697 source: hosted
677 version: "2.0.1" 698 version: "2.0.1"
678 octo_image: 699 octo_image:
679 dependency: transitive 700 dependency: transitive
680 description: 701 description:
681 name: octo_image 702 name: octo_image
682 - url: "https://pub.flutter-io.cn" 703 + url: "https://pub.dartlang.org"
683 source: hosted 704 source: hosted
684 version: "1.0.1" 705 version: "1.0.1"
685 oktoast: 706 oktoast:
686 dependency: "direct main" 707 dependency: "direct main"
687 description: 708 description:
688 name: oktoast 709 name: oktoast
689 - url: "https://pub.flutter-io.cn" 710 + url: "https://pub.dartlang.org"
690 source: hosted 711 source: hosted
691 version: "3.1.5" 712 version: "3.1.5"
692 package_config: 713 package_config:
693 dependency: transitive 714 dependency: transitive
694 description: 715 description:
695 name: package_config 716 name: package_config
696 - url: "https://pub.flutter-io.cn" 717 + url: "https://pub.dartlang.org"
697 source: hosted 718 source: hosted
698 version: "2.0.2" 719 version: "2.0.2"
699 path: 720 path:
700 dependency: transitive 721 dependency: transitive
701 description: 722 description:
702 name: path 723 name: path
703 - url: "https://pub.flutter-io.cn" 724 + url: "https://pub.dartlang.org"
704 source: hosted 725 source: hosted
705 version: "1.8.0" 726 version: "1.8.0"
706 path_provider: 727 path_provider:
707 dependency: "direct main" 728 dependency: "direct main"
708 description: 729 description:
709 name: path_provider 730 name: path_provider
710 - url: "https://pub.flutter-io.cn" 731 + url: "https://pub.dartlang.org"
711 source: hosted 732 source: hosted
712 version: "2.0.9" 733 version: "2.0.9"
713 path_provider_android: 734 path_provider_android:
714 dependency: transitive 735 dependency: transitive
715 description: 736 description:
716 name: path_provider_android 737 name: path_provider_android
717 - url: "https://pub.flutter-io.cn" 738 + url: "https://pub.dartlang.org"
718 source: hosted 739 source: hosted
719 version: "2.0.12" 740 version: "2.0.12"
720 path_provider_ios: 741 path_provider_ios:
721 dependency: transitive 742 dependency: transitive
722 description: 743 description:
723 name: path_provider_ios 744 name: path_provider_ios
724 - url: "https://pub.flutter-io.cn" 745 + url: "https://pub.dartlang.org"
725 source: hosted 746 source: hosted
726 version: "2.0.8" 747 version: "2.0.8"
727 path_provider_linux: 748 path_provider_linux:
728 dependency: transitive 749 dependency: transitive
729 description: 750 description:
730 name: path_provider_linux 751 name: path_provider_linux
731 - url: "https://pub.flutter-io.cn" 752 + url: "https://pub.dartlang.org"
732 source: hosted 753 source: hosted
733 version: "2.1.5" 754 version: "2.1.5"
734 path_provider_macos: 755 path_provider_macos:
735 dependency: transitive 756 dependency: transitive
736 description: 757 description:
737 name: path_provider_macos 758 name: path_provider_macos
738 - url: "https://pub.flutter-io.cn" 759 + url: "https://pub.dartlang.org"
739 source: hosted 760 source: hosted
740 version: "2.0.5" 761 version: "2.0.5"
741 path_provider_platform_interface: 762 path_provider_platform_interface:
742 dependency: transitive 763 dependency: transitive
743 description: 764 description:
744 name: path_provider_platform_interface 765 name: path_provider_platform_interface
745 - url: "https://pub.flutter-io.cn" 766 + url: "https://pub.dartlang.org"
746 source: hosted 767 source: hosted
747 version: "2.0.3" 768 version: "2.0.3"
748 path_provider_windows: 769 path_provider_windows:
749 dependency: transitive 770 dependency: transitive
750 description: 771 description:
751 name: path_provider_windows 772 name: path_provider_windows
752 - url: "https://pub.flutter-io.cn" 773 + url: "https://pub.dartlang.org"
753 source: hosted 774 source: hosted
754 version: "2.0.5" 775 version: "2.0.5"
755 pausable_timer: 776 pausable_timer:
756 dependency: "direct main" 777 dependency: "direct main"
757 description: 778 description:
758 name: pausable_timer 779 name: pausable_timer
759 - url: "https://pub.flutter-io.cn" 780 + url: "https://pub.dartlang.org"
760 source: hosted 781 source: hosted
761 version: "1.0.0+4" 782 version: "1.0.0+4"
762 pedantic: 783 pedantic:
763 dependency: transitive 784 dependency: transitive
764 description: 785 description:
765 name: pedantic 786 name: pedantic
766 - url: "https://pub.flutter-io.cn" 787 + url: "https://pub.dartlang.org"
767 source: hosted 788 source: hosted
768 version: "1.11.1" 789 version: "1.11.1"
769 permission_handler: 790 permission_handler:
770 dependency: "direct dev" 791 dependency: "direct dev"
771 description: 792 description:
772 name: permission_handler 793 name: permission_handler
773 - url: "https://pub.flutter-io.cn" 794 + url: "https://pub.dartlang.org"
774 source: hosted 795 source: hosted
775 version: "9.2.0" 796 version: "9.2.0"
776 permission_handler_android: 797 permission_handler_android:
777 dependency: transitive 798 dependency: transitive
778 description: 799 description:
779 name: permission_handler_android 800 name: permission_handler_android
780 - url: "https://pub.flutter-io.cn" 801 + url: "https://pub.dartlang.org"
781 source: hosted 802 source: hosted
782 version: "9.0.2+1" 803 version: "9.0.2+1"
783 permission_handler_apple: 804 permission_handler_apple:
784 dependency: transitive 805 dependency: transitive
785 description: 806 description:
786 name: permission_handler_apple 807 name: permission_handler_apple
787 - url: "https://pub.flutter-io.cn" 808 + url: "https://pub.dartlang.org"
788 source: hosted 809 source: hosted
789 - version: "9.0.3" 810 + version: "9.0.4"
790 permission_handler_platform_interface: 811 permission_handler_platform_interface:
791 dependency: transitive 812 dependency: transitive
792 description: 813 description:
793 name: permission_handler_platform_interface 814 name: permission_handler_platform_interface
794 - url: "https://pub.flutter-io.cn" 815 + url: "https://pub.dartlang.org"
795 source: hosted 816 source: hosted
796 version: "3.7.0" 817 version: "3.7.0"
797 permission_handler_windows: 818 permission_handler_windows:
798 dependency: transitive 819 dependency: transitive
799 description: 820 description:
800 name: permission_handler_windows 821 name: permission_handler_windows
801 - url: "https://pub.flutter-io.cn" 822 + url: "https://pub.dartlang.org"
802 source: hosted 823 source: hosted
803 version: "0.1.0" 824 version: "0.1.0"
804 petitparser: 825 petitparser:
805 dependency: transitive 826 dependency: transitive
806 description: 827 description:
807 name: petitparser 828 name: petitparser
808 - url: "https://pub.flutter-io.cn" 829 + url: "https://pub.dartlang.org"
809 source: hosted 830 source: hosted
810 version: "4.4.0" 831 version: "4.4.0"
811 platform: 832 platform:
812 dependency: transitive 833 dependency: transitive
813 description: 834 description:
814 name: platform 835 name: platform
815 - url: "https://pub.flutter-io.cn" 836 + url: "https://pub.dartlang.org"
816 source: hosted 837 source: hosted
817 version: "3.1.0" 838 version: "3.1.0"
818 plugin_platform_interface: 839 plugin_platform_interface:
819 dependency: transitive 840 dependency: transitive
820 description: 841 description:
821 name: plugin_platform_interface 842 name: plugin_platform_interface
822 - url: "https://pub.flutter-io.cn" 843 + url: "https://pub.dartlang.org"
823 source: hosted 844 source: hosted
824 version: "2.1.2" 845 version: "2.1.2"
825 pool: 846 pool:
826 dependency: transitive 847 dependency: transitive
827 description: 848 description:
828 name: pool 849 name: pool
829 - url: "https://pub.flutter-io.cn" 850 + url: "https://pub.dartlang.org"
830 source: hosted 851 source: hosted
831 version: "1.5.0" 852 version: "1.5.0"
832 process: 853 process:
833 dependency: transitive 854 dependency: transitive
834 description: 855 description:
835 name: process 856 name: process
836 - url: "https://pub.flutter-io.cn" 857 + url: "https://pub.dartlang.org"
837 source: hosted 858 source: hosted
838 version: "4.2.4" 859 version: "4.2.4"
839 provider: 860 provider:
840 dependency: "direct main" 861 dependency: "direct main"
841 description: 862 description:
842 name: provider 863 name: provider
843 - url: "https://pub.flutter-io.cn" 864 + url: "https://pub.dartlang.org"
844 source: hosted 865 source: hosted
845 version: "6.0.2" 866 version: "6.0.2"
846 pub_semver: 867 pub_semver:
847 dependency: transitive 868 dependency: transitive
848 description: 869 description:
849 name: pub_semver 870 name: pub_semver
850 - url: "https://pub.flutter-io.cn" 871 + url: "https://pub.dartlang.org"
851 source: hosted 872 source: hosted
852 version: "2.1.1" 873 version: "2.1.1"
853 pubspec_parse: 874 pubspec_parse:
854 dependency: transitive 875 dependency: transitive
855 description: 876 description:
856 name: pubspec_parse 877 name: pubspec_parse
857 - url: "https://pub.flutter-io.cn" 878 + url: "https://pub.dartlang.org"
858 source: hosted 879 source: hosted
859 version: "1.2.0" 880 version: "1.2.0"
860 qr_code_scanner: 881 qr_code_scanner:
861 dependency: "direct main" 882 dependency: "direct main"
862 description: 883 description:
863 name: qr_code_scanner 884 name: qr_code_scanner
864 - url: "https://pub.flutter-io.cn" 885 + url: "https://pub.dartlang.org"
865 source: hosted 886 source: hosted
866 version: "0.7.0" 887 version: "0.7.0"
867 quick_actions: 888 quick_actions:
868 dependency: "direct main" 889 dependency: "direct main"
869 description: 890 description:
870 name: quick_actions 891 name: quick_actions
871 - url: "https://pub.flutter-io.cn" 892 + url: "https://pub.dartlang.org"
872 source: hosted 893 source: hosted
873 version: "0.6.0+10" 894 version: "0.6.0+10"
874 quick_actions_android: 895 quick_actions_android:
875 dependency: transitive 896 dependency: transitive
876 description: 897 description:
877 name: quick_actions_android 898 name: quick_actions_android
878 - url: "https://pub.flutter-io.cn" 899 + url: "https://pub.dartlang.org"
879 source: hosted 900 source: hosted
880 version: "0.6.0+9" 901 version: "0.6.0+9"
881 quick_actions_ios: 902 quick_actions_ios:
882 dependency: transitive 903 dependency: transitive
883 description: 904 description:
884 name: quick_actions_ios 905 name: quick_actions_ios
885 - url: "https://pub.flutter-io.cn" 906 + url: "https://pub.dartlang.org"
886 source: hosted 907 source: hosted
887 version: "0.6.0+9" 908 version: "0.6.0+9"
888 quick_actions_platform_interface: 909 quick_actions_platform_interface:
889 dependency: transitive 910 dependency: transitive
890 description: 911 description:
891 name: quick_actions_platform_interface 912 name: quick_actions_platform_interface
892 - url: "https://pub.flutter-io.cn" 913 + url: "https://pub.dartlang.org"
893 source: hosted 914 source: hosted
894 version: "1.0.2" 915 version: "1.0.2"
895 quiver: 916 quiver:
896 dependency: transitive 917 dependency: transitive
897 description: 918 description:
898 name: quiver 919 name: quiver
899 - url: "https://pub.flutter-io.cn" 920 + url: "https://pub.dartlang.org"
900 source: hosted 921 source: hosted
901 version: "3.0.1+1" 922 version: "3.0.1+1"
902 rational: 923 rational:
903 dependency: transitive 924 dependency: transitive
904 description: 925 description:
905 name: rational 926 name: rational
906 - url: "https://pub.flutter-io.cn" 927 + url: "https://pub.dartlang.org"
907 source: hosted 928 source: hosted
908 version: "1.2.1" 929 version: "1.2.1"
909 recase: 930 recase:
910 dependency: transitive 931 dependency: transitive
911 description: 932 description:
912 name: recase 933 name: recase
913 - url: "https://pub.flutter-io.cn" 934 + url: "https://pub.dartlang.org"
914 source: hosted 935 source: hosted
915 version: "4.0.0" 936 version: "4.0.0"
916 rxdart: 937 rxdart:
917 dependency: "direct main" 938 dependency: "direct main"
918 description: 939 description:
919 name: rxdart 940 name: rxdart
920 - url: "https://pub.flutter-io.cn" 941 + url: "https://pub.dartlang.org"
921 source: hosted 942 source: hosted
922 version: "0.27.3" 943 version: "0.27.3"
923 safemap: 944 safemap:
924 dependency: "direct main" 945 dependency: "direct main"
925 description: 946 description:
926 name: safemap 947 name: safemap
927 - url: "https://pub.flutter-io.cn" 948 + url: "https://pub.dartlang.org"
928 source: hosted 949 source: hosted
929 version: "2.1.0" 950 version: "2.1.0"
930 shared_preferences: 951 shared_preferences:
931 dependency: transitive 952 dependency: transitive
932 description: 953 description:
933 name: shared_preferences 954 name: shared_preferences
934 - url: "https://pub.flutter-io.cn" 955 + url: "https://pub.dartlang.org"
935 source: hosted 956 source: hosted
936 version: "2.0.13" 957 version: "2.0.13"
937 shared_preferences_android: 958 shared_preferences_android:
938 dependency: transitive 959 dependency: transitive
939 description: 960 description:
940 name: shared_preferences_android 961 name: shared_preferences_android
941 - url: "https://pub.flutter-io.cn" 962 + url: "https://pub.dartlang.org"
942 source: hosted 963 source: hosted
943 version: "2.0.11" 964 version: "2.0.11"
944 shared_preferences_ios: 965 shared_preferences_ios:
945 dependency: transitive 966 dependency: transitive
946 description: 967 description:
947 name: shared_preferences_ios 968 name: shared_preferences_ios
948 - url: "https://pub.flutter-io.cn" 969 + url: "https://pub.dartlang.org"
949 source: hosted 970 source: hosted
950 version: "2.1.0" 971 version: "2.1.0"
951 shared_preferences_linux: 972 shared_preferences_linux:
952 dependency: transitive 973 dependency: transitive
953 description: 974 description:
954 name: shared_preferences_linux 975 name: shared_preferences_linux
955 - url: "https://pub.flutter-io.cn" 976 + url: "https://pub.dartlang.org"
956 source: hosted 977 source: hosted
957 version: "2.1.0" 978 version: "2.1.0"
958 shared_preferences_macos: 979 shared_preferences_macos:
959 dependency: transitive 980 dependency: transitive
960 description: 981 description:
961 name: shared_preferences_macos 982 name: shared_preferences_macos
962 - url: "https://pub.flutter-io.cn" 983 + url: "https://pub.dartlang.org"
963 source: hosted 984 source: hosted
964 version: "2.0.3" 985 version: "2.0.3"
965 shared_preferences_platform_interface: 986 shared_preferences_platform_interface:
966 dependency: transitive 987 dependency: transitive
967 description: 988 description:
968 name: shared_preferences_platform_interface 989 name: shared_preferences_platform_interface
969 - url: "https://pub.flutter-io.cn" 990 + url: "https://pub.dartlang.org"
970 source: hosted 991 source: hosted
971 version: "2.0.0" 992 version: "2.0.0"
972 shared_preferences_web: 993 shared_preferences_web:
973 dependency: transitive 994 dependency: transitive
974 description: 995 description:
975 name: shared_preferences_web 996 name: shared_preferences_web
976 - url: "https://pub.flutter-io.cn" 997 + url: "https://pub.dartlang.org"
977 source: hosted 998 source: hosted
978 version: "2.0.3" 999 version: "2.0.3"
979 shared_preferences_windows: 1000 shared_preferences_windows:
980 dependency: transitive 1001 dependency: transitive
981 description: 1002 description:
982 name: shared_preferences_windows 1003 name: shared_preferences_windows
983 - url: "https://pub.flutter-io.cn" 1004 + url: "https://pub.dartlang.org"
984 source: hosted 1005 source: hosted
985 version: "2.1.0" 1006 version: "2.1.0"
986 shelf: 1007 shelf:
987 dependency: transitive 1008 dependency: transitive
988 description: 1009 description:
989 name: shelf 1010 name: shelf
990 - url: "https://pub.flutter-io.cn" 1011 + url: "https://pub.dartlang.org"
991 source: hosted 1012 source: hosted
992 version: "1.3.0" 1013 version: "1.3.0"
993 shelf_packages_handler: 1014 shelf_packages_handler:
994 dependency: transitive 1015 dependency: transitive
995 description: 1016 description:
996 name: shelf_packages_handler 1017 name: shelf_packages_handler
997 - url: "https://pub.flutter-io.cn" 1018 + url: "https://pub.dartlang.org"
998 source: hosted 1019 source: hosted
999 version: "3.0.0" 1020 version: "3.0.0"
1000 shelf_static: 1021 shelf_static:
1001 dependency: transitive 1022 dependency: transitive
1002 description: 1023 description:
1003 name: shelf_static 1024 name: shelf_static
1004 - url: "https://pub.flutter-io.cn" 1025 + url: "https://pub.dartlang.org"
1005 source: hosted 1026 source: hosted
1006 version: "1.1.0" 1027 version: "1.1.0"
1007 shelf_web_socket: 1028 shelf_web_socket:
1008 dependency: transitive 1029 dependency: transitive
1009 description: 1030 description:
1010 name: shelf_web_socket 1031 name: shelf_web_socket
1011 - url: "https://pub.flutter-io.cn" 1032 + url: "https://pub.dartlang.org"
1012 source: hosted 1033 source: hosted
1013 version: "1.0.1" 1034 version: "1.0.1"
1014 sky_engine: 1035 sky_engine:
...@@ -1020,385 +1041,385 @@ packages: ...@@ -1020,385 +1041,385 @@ packages:
1020 dependency: transitive 1041 dependency: transitive
1021 description: 1042 description:
1022 name: source_gen 1043 name: source_gen
1023 - url: "https://pub.flutter-io.cn" 1044 + url: "https://pub.dartlang.org"
1024 source: hosted 1045 source: hosted
1025 version: "1.2.1" 1046 version: "1.2.1"
1026 source_helper: 1047 source_helper:
1027 dependency: transitive 1048 dependency: transitive
1028 description: 1049 description:
1029 name: source_helper 1050 name: source_helper
1030 - url: "https://pub.flutter-io.cn" 1051 + url: "https://pub.dartlang.org"
1031 source: hosted 1052 source: hosted
1032 version: "1.3.1" 1053 version: "1.3.1"
1033 source_map_stack_trace: 1054 source_map_stack_trace:
1034 dependency: transitive 1055 dependency: transitive
1035 description: 1056 description:
1036 name: source_map_stack_trace 1057 name: source_map_stack_trace
1037 - url: "https://pub.flutter-io.cn" 1058 + url: "https://pub.dartlang.org"
1038 source: hosted 1059 source: hosted
1039 version: "2.1.0" 1060 version: "2.1.0"
1040 source_maps: 1061 source_maps:
1041 dependency: transitive 1062 dependency: transitive
1042 description: 1063 description:
1043 name: source_maps 1064 name: source_maps
1044 - url: "https://pub.flutter-io.cn" 1065 + url: "https://pub.dartlang.org"
1045 source: hosted 1066 source: hosted
1046 version: "0.10.10" 1067 version: "0.10.10"
1047 source_span: 1068 source_span:
1048 dependency: transitive 1069 dependency: transitive
1049 description: 1070 description:
1050 name: source_span 1071 name: source_span
1051 - url: "https://pub.flutter-io.cn" 1072 + url: "https://pub.dartlang.org"
1052 source: hosted 1073 source: hosted
1053 version: "1.8.1" 1074 version: "1.8.1"
1054 sp_util: 1075 sp_util:
1055 dependency: transitive 1076 dependency: transitive
1056 description: 1077 description:
1057 name: sp_util 1078 name: sp_util
1058 - url: "https://pub.flutter-io.cn" 1079 + url: "https://pub.dartlang.org"
1059 source: hosted 1080 source: hosted
1060 version: "2.0.3" 1081 version: "2.0.3"
1061 sprintf: 1082 sprintf:
1062 dependency: "direct main" 1083 dependency: "direct main"
1063 description: 1084 description:
1064 name: sprintf 1085 name: sprintf
1065 - url: "https://pub.flutter-io.cn" 1086 + url: "https://pub.dartlang.org"
1066 source: hosted 1087 source: hosted
1067 version: "6.0.0" 1088 version: "6.0.0"
1068 sqflite: 1089 sqflite:
1069 dependency: transitive 1090 dependency: transitive
1070 description: 1091 description:
1071 name: sqflite 1092 name: sqflite
1072 - url: "https://pub.flutter-io.cn" 1093 + url: "https://pub.dartlang.org"
1073 source: hosted 1094 source: hosted
1074 version: "2.0.2" 1095 version: "2.0.2"
1075 sqflite_common: 1096 sqflite_common:
1076 dependency: transitive 1097 dependency: transitive
1077 description: 1098 description:
1078 name: sqflite_common 1099 name: sqflite_common
1079 - url: "https://pub.flutter-io.cn" 1100 + url: "https://pub.dartlang.org"
1080 source: hosted 1101 source: hosted
1081 version: "2.2.1" 1102 version: "2.2.1"
1082 stack_trace: 1103 stack_trace:
1083 dependency: transitive 1104 dependency: transitive
1084 description: 1105 description:
1085 name: stack_trace 1106 name: stack_trace
1086 - url: "https://pub.flutter-io.cn" 1107 + url: "https://pub.dartlang.org"
1087 source: hosted 1108 source: hosted
1088 version: "1.10.0" 1109 version: "1.10.0"
1089 sticky_headers: 1110 sticky_headers:
1090 dependency: "direct main" 1111 dependency: "direct main"
1091 description: 1112 description:
1092 name: sticky_headers 1113 name: sticky_headers
1093 - url: "https://pub.flutter-io.cn" 1114 + url: "https://pub.dartlang.org"
1094 source: hosted 1115 source: hosted
1095 version: "0.2.0" 1116 version: "0.2.0"
1096 stream_channel: 1117 stream_channel:
1097 dependency: transitive 1118 dependency: transitive
1098 description: 1119 description:
1099 name: stream_channel 1120 name: stream_channel
1100 - url: "https://pub.flutter-io.cn" 1121 + url: "https://pub.dartlang.org"
1101 source: hosted 1122 source: hosted
1102 version: "2.1.0" 1123 version: "2.1.0"
1103 stream_transform: 1124 stream_transform:
1104 dependency: transitive 1125 dependency: transitive
1105 description: 1126 description:
1106 name: stream_transform 1127 name: stream_transform
1107 - url: "https://pub.flutter-io.cn" 1128 + url: "https://pub.dartlang.org"
1108 source: hosted 1129 source: hosted
1109 version: "2.0.0" 1130 version: "2.0.0"
1110 string_scanner: 1131 string_scanner:
1111 dependency: transitive 1132 dependency: transitive
1112 description: 1133 description:
1113 name: string_scanner 1134 name: string_scanner
1114 - url: "https://pub.flutter-io.cn" 1135 + url: "https://pub.dartlang.org"
1115 source: hosted 1136 source: hosted
1116 version: "1.1.0" 1137 version: "1.1.0"
1117 sync_http: 1138 sync_http:
1118 dependency: transitive 1139 dependency: transitive
1119 description: 1140 description:
1120 name: sync_http 1141 name: sync_http
1121 - url: "https://pub.flutter-io.cn" 1142 + url: "https://pub.dartlang.org"
1122 source: hosted 1143 source: hosted
1123 version: "0.3.0" 1144 version: "0.3.0"
1124 synchronized: 1145 synchronized:
1125 dependency: transitive 1146 dependency: transitive
1126 description: 1147 description:
1127 name: synchronized 1148 name: synchronized
1128 - url: "https://pub.flutter-io.cn" 1149 + url: "https://pub.dartlang.org"
1129 source: hosted 1150 source: hosted
1130 version: "3.0.0+2" 1151 version: "3.0.0+2"
1131 tapped: 1152 tapped:
1132 dependency: "direct main" 1153 dependency: "direct main"
1133 description: 1154 description:
1134 name: tapped 1155 name: tapped
1135 - url: "https://pub.flutter-io.cn" 1156 + url: "https://pub.dartlang.org"
1136 source: hosted 1157 source: hosted
1137 version: "2.0.0" 1158 version: "2.0.0"
1138 term_glyph: 1159 term_glyph:
1139 dependency: transitive 1160 dependency: transitive
1140 description: 1161 description:
1141 name: term_glyph 1162 name: term_glyph
1142 - url: "https://pub.flutter-io.cn" 1163 + url: "https://pub.dartlang.org"
1143 source: hosted 1164 source: hosted
1144 version: "1.2.0" 1165 version: "1.2.0"
1145 test: 1166 test:
1146 dependency: "direct dev" 1167 dependency: "direct dev"
1147 description: 1168 description:
1148 name: test 1169 name: test
1149 - url: "https://pub.flutter-io.cn" 1170 + url: "https://pub.dartlang.org"
1150 source: hosted 1171 source: hosted
1151 version: "1.19.5" 1172 version: "1.19.5"
1152 test_api: 1173 test_api:
1153 dependency: transitive 1174 dependency: transitive
1154 description: 1175 description:
1155 name: test_api 1176 name: test_api
1156 - url: "https://pub.flutter-io.cn" 1177 + url: "https://pub.dartlang.org"
1157 source: hosted 1178 source: hosted
1158 version: "0.4.8" 1179 version: "0.4.8"
1159 test_core: 1180 test_core:
1160 dependency: transitive 1181 dependency: transitive
1161 description: 1182 description:
1162 name: test_core 1183 name: test_core
1163 - url: "https://pub.flutter-io.cn" 1184 + url: "https://pub.dartlang.org"
1164 source: hosted 1185 source: hosted
1165 version: "0.4.9" 1186 version: "0.4.9"
1166 timing: 1187 timing:
1167 dependency: transitive 1188 dependency: transitive
1168 description: 1189 description:
1169 name: timing 1190 name: timing
1170 - url: "https://pub.flutter-io.cn" 1191 + url: "https://pub.dartlang.org"
1171 source: hosted 1192 source: hosted
1172 version: "1.0.0" 1193 version: "1.0.0"
1173 typed_data: 1194 typed_data:
1174 dependency: transitive 1195 dependency: transitive
1175 description: 1196 description:
1176 name: typed_data 1197 name: typed_data
1177 - url: "https://pub.flutter-io.cn" 1198 + url: "https://pub.dartlang.org"
1178 source: hosted 1199 source: hosted
1179 version: "1.3.0" 1200 version: "1.3.0"
1180 universal_io: 1201 universal_io:
1181 dependency: transitive 1202 dependency: transitive
1182 description: 1203 description:
1183 name: universal_io 1204 name: universal_io
1184 - url: "https://pub.flutter-io.cn" 1205 + url: "https://pub.dartlang.org"
1185 source: hosted 1206 source: hosted
1186 version: "2.0.4" 1207 version: "2.0.4"
1187 url_launcher: 1208 url_launcher:
1188 dependency: "direct main" 1209 dependency: "direct main"
1189 description: 1210 description:
1190 name: url_launcher 1211 name: url_launcher
1191 - url: "https://pub.flutter-io.cn" 1212 + url: "https://pub.dartlang.org"
1192 source: hosted 1213 source: hosted
1193 version: "6.0.20" 1214 version: "6.0.20"
1194 url_launcher_android: 1215 url_launcher_android:
1195 dependency: transitive 1216 dependency: transitive
1196 description: 1217 description:
1197 name: url_launcher_android 1218 name: url_launcher_android
1198 - url: "https://pub.flutter-io.cn" 1219 + url: "https://pub.dartlang.org"
1199 source: hosted 1220 source: hosted
1200 version: "6.0.15" 1221 version: "6.0.15"
1201 url_launcher_ios: 1222 url_launcher_ios:
1202 dependency: transitive 1223 dependency: transitive
1203 description: 1224 description:
1204 name: url_launcher_ios 1225 name: url_launcher_ios
1205 - url: "https://pub.flutter-io.cn" 1226 + url: "https://pub.dartlang.org"
1206 source: hosted 1227 source: hosted
1207 version: "6.0.15" 1228 version: "6.0.15"
1208 url_launcher_linux: 1229 url_launcher_linux:
1209 dependency: transitive 1230 dependency: transitive
1210 description: 1231 description:
1211 name: url_launcher_linux 1232 name: url_launcher_linux
1212 - url: "https://pub.flutter-io.cn" 1233 + url: "https://pub.dartlang.org"
1213 source: hosted 1234 source: hosted
1214 version: "3.0.0" 1235 version: "3.0.0"
1215 url_launcher_macos: 1236 url_launcher_macos:
1216 dependency: transitive 1237 dependency: transitive
1217 description: 1238 description:
1218 name: url_launcher_macos 1239 name: url_launcher_macos
1219 - url: "https://pub.flutter-io.cn" 1240 + url: "https://pub.dartlang.org"
1220 source: hosted 1241 source: hosted
1221 version: "3.0.0" 1242 version: "3.0.0"
1222 url_launcher_platform_interface: 1243 url_launcher_platform_interface:
1223 dependency: transitive 1244 dependency: transitive
1224 description: 1245 description:
1225 name: url_launcher_platform_interface 1246 name: url_launcher_platform_interface
1226 - url: "https://pub.flutter-io.cn" 1247 + url: "https://pub.dartlang.org"
1227 source: hosted 1248 source: hosted
1228 version: "2.0.5" 1249 version: "2.0.5"
1229 url_launcher_web: 1250 url_launcher_web:
1230 dependency: transitive 1251 dependency: transitive
1231 description: 1252 description:
1232 name: url_launcher_web 1253 name: url_launcher_web
1233 - url: "https://pub.flutter-io.cn" 1254 + url: "https://pub.dartlang.org"
1234 source: hosted 1255 source: hosted
1235 version: "2.0.9" 1256 version: "2.0.9"
1236 url_launcher_windows: 1257 url_launcher_windows:
1237 dependency: transitive 1258 dependency: transitive
1238 description: 1259 description:
1239 name: url_launcher_windows 1260 name: url_launcher_windows
1240 - url: "https://pub.flutter-io.cn" 1261 + url: "https://pub.dartlang.org"
1241 source: hosted 1262 source: hosted
1242 version: "3.0.0" 1263 version: "3.0.0"
1243 url_strategy: 1264 url_strategy:
1244 dependency: "direct main" 1265 dependency: "direct main"
1245 description: 1266 description:
1246 name: url_strategy 1267 name: url_strategy
1247 - url: "https://pub.flutter-io.cn" 1268 + url: "https://pub.dartlang.org"
1248 source: hosted 1269 source: hosted
1249 version: "0.2.0" 1270 version: "0.2.0"
1250 uuid: 1271 uuid:
1251 dependency: transitive 1272 dependency: transitive
1252 description: 1273 description:
1253 name: uuid 1274 name: uuid
1254 - url: "https://pub.flutter-io.cn" 1275 + url: "https://pub.dartlang.org"
1255 source: hosted 1276 source: hosted
1256 version: "3.0.6" 1277 version: "3.0.6"
1257 vector_math: 1278 vector_math:
1258 dependency: transitive 1279 dependency: transitive
1259 description: 1280 description:
1260 name: vector_math 1281 name: vector_math
1261 - url: "https://pub.flutter-io.cn" 1282 + url: "https://pub.dartlang.org"
1262 source: hosted 1283 source: hosted
1263 version: "2.1.1" 1284 version: "2.1.1"
1264 vibration: 1285 vibration:
1265 dependency: "direct main" 1286 dependency: "direct main"
1266 description: 1287 description:
1267 name: vibration 1288 name: vibration
1268 - url: "https://pub.flutter-io.cn" 1289 + url: "https://pub.dartlang.org"
1269 source: hosted 1290 source: hosted
1270 version: "1.7.4-nullsafety.0" 1291 version: "1.7.4-nullsafety.0"
1271 vibration_web: 1292 vibration_web:
1272 dependency: transitive 1293 dependency: transitive
1273 description: 1294 description:
1274 name: vibration_web 1295 name: vibration_web
1275 - url: "https://pub.flutter-io.cn" 1296 + url: "https://pub.dartlang.org"
1276 source: hosted 1297 source: hosted
1277 version: "1.6.3-nullsafety.0" 1298 version: "1.6.3-nullsafety.0"
1278 video_player: 1299 video_player:
1279 dependency: "direct main" 1300 dependency: "direct main"
1280 description: 1301 description:
1281 name: video_player 1302 name: video_player
1282 - url: "https://pub.flutter-io.cn" 1303 + url: "https://pub.dartlang.org"
1283 source: hosted 1304 source: hosted
1284 version: "2.3.0" 1305 version: "2.3.0"
1285 video_player_android: 1306 video_player_android:
1286 dependency: transitive 1307 dependency: transitive
1287 description: 1308 description:
1288 name: video_player_android 1309 name: video_player_android
1289 - url: "https://pub.flutter-io.cn" 1310 + url: "https://pub.dartlang.org"
1290 source: hosted 1311 source: hosted
1291 version: "2.3.2" 1312 version: "2.3.2"
1292 video_player_avfoundation: 1313 video_player_avfoundation:
1293 dependency: transitive 1314 dependency: transitive
1294 description: 1315 description:
1295 name: video_player_avfoundation 1316 name: video_player_avfoundation
1296 - url: "https://pub.flutter-io.cn" 1317 + url: "https://pub.dartlang.org"
1297 source: hosted 1318 source: hosted
1298 version: "2.3.1" 1319 version: "2.3.1"
1299 video_player_platform_interface: 1320 video_player_platform_interface:
1300 dependency: transitive 1321 dependency: transitive
1301 description: 1322 description:
1302 name: video_player_platform_interface 1323 name: video_player_platform_interface
1303 - url: "https://pub.flutter-io.cn" 1324 + url: "https://pub.dartlang.org"
1304 source: hosted 1325 source: hosted
1305 version: "5.1.1" 1326 version: "5.1.1"
1306 video_player_web: 1327 video_player_web:
1307 dependency: transitive 1328 dependency: transitive
1308 description: 1329 description:
1309 name: video_player_web 1330 name: video_player_web
1310 - url: "https://pub.flutter-io.cn" 1331 + url: "https://pub.dartlang.org"
1311 source: hosted 1332 source: hosted
1312 version: "2.0.7" 1333 version: "2.0.7"
1313 vm_service: 1334 vm_service:
1314 dependency: transitive 1335 dependency: transitive
1315 description: 1336 description:
1316 name: vm_service 1337 name: vm_service
1317 - url: "https://pub.flutter-io.cn" 1338 + url: "https://pub.dartlang.org"
1318 source: hosted 1339 source: hosted
1319 version: "7.5.0" 1340 version: "7.5.0"
1320 watcher: 1341 watcher:
1321 dependency: transitive 1342 dependency: transitive
1322 description: 1343 description:
1323 name: watcher 1344 name: watcher
1324 - url: "https://pub.flutter-io.cn" 1345 + url: "https://pub.dartlang.org"
1325 source: hosted 1346 source: hosted
1326 version: "1.0.1" 1347 version: "1.0.1"
1327 web_socket_channel: 1348 web_socket_channel:
1328 dependency: transitive 1349 dependency: transitive
1329 description: 1350 description:
1330 name: web_socket_channel 1351 name: web_socket_channel
1331 - url: "https://pub.flutter-io.cn" 1352 + url: "https://pub.dartlang.org"
1332 source: hosted 1353 source: hosted
1333 version: "2.1.0" 1354 version: "2.1.0"
1334 webdriver: 1355 webdriver:
1335 dependency: transitive 1356 dependency: transitive
1336 description: 1357 description:
1337 name: webdriver 1358 name: webdriver
1338 - url: "https://pub.flutter-io.cn" 1359 + url: "https://pub.dartlang.org"
1339 source: hosted 1360 source: hosted
1340 version: "3.0.0" 1361 version: "3.0.0"
1341 webkit_inspection_protocol: 1362 webkit_inspection_protocol:
1342 dependency: transitive 1363 dependency: transitive
1343 description: 1364 description:
1344 name: webkit_inspection_protocol 1365 name: webkit_inspection_protocol
1345 - url: "https://pub.flutter-io.cn" 1366 + url: "https://pub.dartlang.org"
1346 source: hosted 1367 source: hosted
1347 version: "1.0.0" 1368 version: "1.0.0"
1348 webview_flutter: 1369 webview_flutter:
1349 dependency: "direct main" 1370 dependency: "direct main"
1350 description: 1371 description:
1351 name: webview_flutter 1372 name: webview_flutter
1352 - url: "https://pub.flutter-io.cn" 1373 + url: "https://pub.dartlang.org"
1353 source: hosted 1374 source: hosted
1354 - version: "3.0.1" 1375 + version: "3.0.2"
1355 webview_flutter_android: 1376 webview_flutter_android:
1356 dependency: transitive 1377 dependency: transitive
1357 description: 1378 description:
1358 name: webview_flutter_android 1379 name: webview_flutter_android
1359 - url: "https://pub.flutter-io.cn" 1380 + url: "https://pub.dartlang.org"
1360 source: hosted 1381 source: hosted
1361 - version: "2.8.3" 1382 + version: "2.8.5"
1362 webview_flutter_platform_interface: 1383 webview_flutter_platform_interface:
1363 dependency: transitive 1384 dependency: transitive
1364 description: 1385 description:
1365 name: webview_flutter_platform_interface 1386 name: webview_flutter_platform_interface
1366 - url: "https://pub.flutter-io.cn" 1387 + url: "https://pub.dartlang.org"
1367 source: hosted 1388 source: hosted
1368 version: "1.8.1" 1389 version: "1.8.1"
1369 webview_flutter_wkwebview: 1390 webview_flutter_wkwebview:
1370 dependency: transitive 1391 dependency: transitive
1371 description: 1392 description:
1372 name: webview_flutter_wkwebview 1393 name: webview_flutter_wkwebview
1373 - url: "https://pub.flutter-io.cn" 1394 + url: "https://pub.dartlang.org"
1374 source: hosted 1395 source: hosted
1375 - version: "2.7.1" 1396 + version: "2.7.2"
1376 win32: 1397 win32:
1377 dependency: transitive 1398 dependency: transitive
1378 description: 1399 description:
1379 name: win32 1400 name: win32
1380 - url: "https://pub.flutter-io.cn" 1401 + url: "https://pub.dartlang.org"
1381 source: hosted 1402 source: hosted
1382 - version: "2.5.0" 1403 + version: "2.5.1"
1383 xdg_directories: 1404 xdg_directories:
1384 dependency: transitive 1405 dependency: transitive
1385 description: 1406 description:
1386 name: xdg_directories 1407 name: xdg_directories
1387 - url: "https://pub.flutter-io.cn" 1408 + url: "https://pub.dartlang.org"
1388 source: hosted 1409 source: hosted
1389 version: "0.2.0+1" 1410 version: "0.2.0+1"
1390 xml: 1411 xml:
1391 dependency: transitive 1412 dependency: transitive
1392 description: 1413 description:
1393 name: xml 1414 name: xml
1394 - url: "https://pub.flutter-io.cn" 1415 + url: "https://pub.dartlang.org"
1395 source: hosted 1416 source: hosted
1396 version: "5.3.1" 1417 version: "5.3.1"
1397 yaml: 1418 yaml:
1398 dependency: transitive 1419 dependency: transitive
1399 description: 1420 description:
1400 name: yaml 1421 name: yaml
1401 - url: "https://pub.flutter-io.cn" 1422 + url: "https://pub.dartlang.org"
1402 source: hosted 1423 source: hosted
1403 version: "3.1.0" 1424 version: "3.1.0"
1404 sdks: 1425 sdks:
......