Showing
7 changed files
with
283 additions
and
236 deletions
... | @@ -33,7 +33,7 @@ import 'util/theme_utils.dart'; | ... | @@ -33,7 +33,7 @@ import 'util/theme_utils.dart'; |
33 | /// json to model | 33 | /// json to model |
34 | /// 安装 | 34 | /// 安装 |
35 | /// dependencies: | 35 | /// dependencies: |
36 | -/// json_annotation: ^4.4.0 | 36 | +/// json_annotation: ^4.4.0x |
37 | /// dev_dependencies: | 37 | /// dev_dependencies: |
38 | /// json_serializable: ^6.1.3 | 38 | /// json_serializable: ^6.1.3 |
39 | /// build_runner: ^2.1.7 | 39 | /// build_runner: ^2.1.7 | ... | ... |
... | @@ -3,6 +3,7 @@ class HttpApi { | ... | @@ -3,6 +3,7 @@ class HttpApi { |
3 | static const String register = 'register'; | 3 | static const String register = 'register'; |
4 | static const String verify = 'verify'; | 4 | static const String verify = 'verify'; |
5 | static const String login = 'login'; | 5 | static const String login = 'login'; |
6 | + static const String uploadVideo = 'upload/video'; | ||
6 | static const String user = 'user'; | 7 | static const String user = 'user'; |
7 | static const String search = 'search/repositories'; | 8 | static const String search = 'search/repositories'; |
8 | static const String subscriptions = 'users/simplezhli/subscriptions'; | 9 | static const String subscriptions = 'users/simplezhli/subscriptions'; | ... | ... |
1 | +import 'package:Parlando/net/dio_utils.dart'; | ||
2 | +import 'package:Parlando/net/http_api.dart'; | ||
3 | +import 'package:dio/dio.dart'; | ||
1 | import 'package:flutter/cupertino.dart'; | 4 | import 'package:flutter/cupertino.dart'; |
2 | import 'package:flutter/material.dart'; | 5 | import 'package:flutter/material.dart'; |
3 | import 'package:flutter_2d_amap/flutter_2d_amap.dart'; | 6 | import 'package:flutter_2d_amap/flutter_2d_amap.dart'; |
... | @@ -6,10 +9,10 @@ import 'package:Parlando/poem/widgets/lang_sort_bottom_sheet.dart'; | ... | @@ -6,10 +9,10 @@ import 'package:Parlando/poem/widgets/lang_sort_bottom_sheet.dart'; |
6 | import 'package:Parlando/res/resources.dart'; | 9 | import 'package:Parlando/res/resources.dart'; |
7 | import 'package:Parlando/routers/fluro_navigator.dart'; | 10 | import 'package:Parlando/routers/fluro_navigator.dart'; |
8 | import 'package:Parlando/routers/routers.dart'; | 11 | import 'package:Parlando/routers/routers.dart'; |
9 | -import 'package:Parlando/widgets/click_item.dart'; | ||
10 | import 'package:Parlando/widgets/my_app_bar.dart'; | 12 | import 'package:Parlando/widgets/my_app_bar.dart'; |
11 | 13 | ||
12 | import 'package:Parlando/extension/int_extension.dart'; | 14 | import 'package:Parlando/extension/int_extension.dart'; |
15 | +import 'package:path_provider/path_provider.dart'; | ||
13 | 16 | ||
14 | import '../poem_router.dart'; | 17 | import '../poem_router.dart'; |
15 | 18 | ||
... | @@ -29,6 +32,8 @@ class _PoemPublishState extends State<PoemPublish> { | ... | @@ -29,6 +32,8 @@ class _PoemPublishState extends State<PoemPublish> { |
29 | String _address = '我在此地'; | 32 | String _address = '我在此地'; |
30 | final LangSortProvider _provider = LangSortProvider(); | 33 | final LangSortProvider _provider = LangSortProvider(); |
31 | 34 | ||
35 | + final TextEditingController _msgController = TextEditingController(); | ||
36 | + | ||
32 | @override | 37 | @override |
33 | void initState() { | 38 | void initState() { |
34 | super.initState(); | 39 | super.initState(); |
... | @@ -72,6 +77,7 @@ class _PoemPublishState extends State<PoemPublish> { | ... | @@ -72,6 +77,7 @@ class _PoemPublishState extends State<PoemPublish> { |
72 | maxWidth: double.infinity, | 77 | maxWidth: double.infinity, |
73 | ), | 78 | ), |
74 | child: TextField( | 79 | child: TextField( |
80 | + controller: _msgController, | ||
75 | maxLines: 10, | 81 | maxLines: 10, |
76 | decoration: InputDecoration( | 82 | decoration: InputDecoration( |
77 | contentPadding: const EdgeInsets.all(10.0), | 83 | contentPadding: const EdgeInsets.all(10.0), |
... | @@ -203,16 +209,51 @@ class _PoemPublishState extends State<PoemPublish> { | ... | @@ -203,16 +209,51 @@ class _PoemPublishState extends State<PoemPublish> { |
203 | ); | 209 | ); |
204 | } | 210 | } |
205 | 211 | ||
212 | + Future<dynamic> _getUploadVideo() async { | ||
213 | + final directory = await getApplicationDocumentsDirectory(); | ||
214 | + dynamic video = await MultipartFile.fromFile( | ||
215 | + directory.path + "/" + widget.data, | ||
216 | + filename: "xxx23.png"); | ||
217 | + return video; | ||
218 | + } | ||
219 | + | ||
206 | Future<void> publishPoem(BuildContext context) async { | 220 | Future<void> publishPoem(BuildContext context) async { |
221 | + String msg = _msgController.text; | ||
222 | + if (msg.isEmpty) { | ||
223 | + msg = "读此一言,仿佛身临其境"; | ||
224 | + } | ||
225 | + | ||
207 | isPublishing = true; | 226 | isPublishing = true; |
208 | setState(() {}); | 227 | setState(() {}); |
209 | - // TODO 等待套入正式接口发布临境 | 228 | + |
210 | - await Future.delayed(const Duration(seconds: 2), () { | 229 | + _getUploadVideo().then((value) { |
211 | - NavigatorUtils.push( | 230 | + Map<String, dynamic> map = <String, dynamic>{ |
212 | - context, | 231 | + "video": value, |
213 | - '${PoemRouter.poemCompletePage}?id=100', | 232 | + }; |
233 | + FormData formData = FormData.fromMap(map); | ||
234 | + DioUtils.instance.asyncRequestNetwork( | ||
235 | + Method.post, | ||
236 | + HttpApi.uploadVideo, | ||
237 | + params: formData, | ||
238 | + onSuccess: (data) { | ||
239 | + print(data); | ||
240 | + //TODO 上传视频成功之后创建临境 | ||
241 | + isPublishing = false; | ||
242 | + }, | ||
243 | + onError: (code, msg) { | ||
244 | + isPublishing = false; | ||
245 | + setState(() {}); | ||
246 | + }, | ||
214 | ); | 247 | ); |
215 | }); | 248 | }); |
249 | + | ||
250 | + // TODO 等待套入正式接口发布临境 | ||
251 | + // await Future.delayed(const Duration(seconds: 2), () { | ||
252 | + // NavigatorUtils.push( | ||
253 | + // context, | ||
254 | + // '${PoemRouter.poemCompletePage}?id=100', | ||
255 | + // ); | ||
256 | + // }); | ||
216 | } | 257 | } |
217 | 258 | ||
218 | Future<bool> _isExit() async { | 259 | Future<bool> _isExit() async { | ... | ... |
... | @@ -255,7 +255,7 @@ class _PoemRecordVideoPageState extends State<PoemRecordVideoPage> | ... | @@ -255,7 +255,7 @@ class _PoemRecordVideoPageState extends State<PoemRecordVideoPage> |
255 | 255 | ||
256 | NavigatorUtils.push( | 256 | NavigatorUtils.push( |
257 | context, | 257 | context, |
258 | - '${PoemRouter.poemVideoPlayer}?url=100', | 258 | + '${PoemRouter.poemVideoPlayer}?url=$currentUnix.$fileFormat', |
259 | ); | 259 | ); |
260 | } catch (e) { | 260 | } catch (e) { |
261 | // print(e); | 261 | // print(e); | ... | ... |
... | @@ -4,6 +4,7 @@ import 'package:Parlando/res/resources.dart'; | ... | @@ -4,6 +4,7 @@ import 'package:Parlando/res/resources.dart'; |
4 | import 'package:Parlando/routers/fluro_navigator.dart'; | 4 | import 'package:Parlando/routers/fluro_navigator.dart'; |
5 | import 'package:Parlando/widgets/my_app_bar.dart'; | 5 | import 'package:Parlando/widgets/my_app_bar.dart'; |
6 | import 'package:Parlando/extension/int_extension.dart'; | 6 | import 'package:Parlando/extension/int_extension.dart'; |
7 | +import 'package:path_provider/path_provider.dart'; | ||
7 | 8 | ||
8 | import '../poem_router.dart'; | 9 | import '../poem_router.dart'; |
9 | 10 | ||
... | @@ -26,16 +27,22 @@ class _PoemVideoPlayerState extends State<PoemVideoPlayer> { | ... | @@ -26,16 +27,22 @@ class _PoemVideoPlayerState extends State<PoemVideoPlayer> { |
26 | 27 | ||
27 | _PoemVideoPlayerState(); | 28 | _PoemVideoPlayerState(); |
28 | 29 | ||
30 | + Future<String> _getDir() async { | ||
31 | + final directory = await getApplicationDocumentsDirectory(); | ||
32 | + return directory.path; | ||
33 | + } | ||
34 | + | ||
29 | @override | 35 | @override |
30 | void initState() { | 36 | void initState() { |
31 | super.initState(); | 37 | super.initState(); |
32 | - // player.setDataSource(widget.url, autoPlay: true); | 38 | + _getDir().then((value) { |
33 | - //TODO 替换真实URL | 39 | + String path = "$value/" + widget.url; |
34 | - player.setDataSource( | 40 | + player.setDataSource( |
35 | - "asset:///assets/data/video_01.mp4", | 41 | + path, |
36 | - autoPlay: true, | 42 | + autoPlay: true, |
37 | - ); | 43 | + ); |
38 | - player.setLoop(0); | 44 | + player.setLoop(0); |
45 | + }); | ||
39 | } | 46 | } |
40 | 47 | ||
41 | @override | 48 | @override |
... | @@ -112,10 +119,8 @@ class _PoemVideoPlayerState extends State<PoemVideoPlayer> { | ... | @@ -112,10 +119,8 @@ class _PoemVideoPlayerState extends State<PoemVideoPlayer> { |
112 | child: ElevatedButton( | 119 | child: ElevatedButton( |
113 | onPressed: () { | 120 | onPressed: () { |
114 | NavigatorUtils.push( | 121 | NavigatorUtils.push( |
115 | - context, | 122 | + context, '${PoemRouter.poemPublish}?data=' + widget.url, |
116 | - '${PoemRouter.poemPublish}?data=100', | 123 | + clearStack: true); |
117 | - clearStack: true | ||
118 | - ); | ||
119 | }, | 124 | }, |
120 | child: Text( | 125 | child: Text( |
121 | "下一步", | 126 | "下一步", | ... | ... |
... | @@ -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.2" | 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.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.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.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.9" | 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.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.2.0" | 101 | version: "8.2.0" |
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+19" | 129 | + version: "0.9.4+20" |
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.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.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.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.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.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.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.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.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.6" | 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.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.5" | 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.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.2.1" | 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.flutter-io.cn" | 445 | + url: "https://pub.dartlang.org" |
446 | source: hosted | 446 | source: hosted |
447 | - version: "9.2.1" | 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.flutter-io.cn" | 452 | + url: "https://pub.dartlang.org" |
453 | source: hosted | 453 | source: hosted |
454 | - version: "9.2.1" | 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.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,91 +492,91 @@ packages: | ... | @@ -492,91 +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 | 552 | source: hosted |
553 | version: "0.8.5" | 553 | version: "0.8.5" |
554 | image_picker_android: | 554 | image_picker_android: |
555 | dependency: transitive | 555 | dependency: transitive |
556 | description: | 556 | description: |
557 | name: image_picker_android | 557 | name: image_picker_android |
558 | - url: "https://pub.flutter-io.cn" | 558 | + url: "https://pub.dartlang.org" |
559 | source: hosted | 559 | source: hosted |
560 | version: "0.8.4+11" | 560 | version: "0.8.4+11" |
561 | image_picker_for_web: | 561 | image_picker_for_web: |
562 | dependency: transitive | 562 | dependency: transitive |
563 | description: | 563 | description: |
564 | name: image_picker_for_web | 564 | name: image_picker_for_web |
565 | - url: "https://pub.flutter-io.cn" | 565 | + url: "https://pub.dartlang.org" |
566 | source: hosted | 566 | source: hosted |
567 | version: "2.1.6" | 567 | version: "2.1.6" |
568 | image_picker_ios: | 568 | image_picker_ios: |
569 | dependency: transitive | 569 | dependency: transitive |
570 | description: | 570 | description: |
571 | name: image_picker_ios | 571 | name: image_picker_ios |
572 | - url: "https://pub.flutter-io.cn" | 572 | + url: "https://pub.dartlang.org" |
573 | source: hosted | 573 | source: hosted |
574 | - version: "0.8.4+11" | 574 | + version: "0.8.5" |
575 | image_picker_platform_interface: | 575 | image_picker_platform_interface: |
576 | dependency: transitive | 576 | dependency: transitive |
577 | description: | 577 | description: |
578 | name: image_picker_platform_interface | 578 | name: image_picker_platform_interface |
579 | - url: "https://pub.flutter-io.cn" | 579 | + url: "https://pub.dartlang.org" |
580 | source: hosted | 580 | source: hosted |
581 | version: "2.4.4" | 581 | version: "2.4.4" |
582 | integration_test: | 582 | integration_test: |
... | @@ -588,469 +588,469 @@ packages: | ... | @@ -588,469 +588,469 @@ packages: |
588 | dependency: "direct main" | 588 | dependency: "direct main" |
589 | description: | 589 | description: |
590 | name: intl | 590 | name: intl |
591 | - url: "https://pub.flutter-io.cn" | 591 | + url: "https://pub.dartlang.org" |
592 | source: hosted | 592 | source: hosted |
593 | version: "0.17.0" | 593 | version: "0.17.0" |
594 | io: | 594 | io: |
595 | dependency: transitive | 595 | dependency: transitive |
596 | description: | 596 | description: |
597 | name: io | 597 | name: io |
598 | - url: "https://pub.flutter-io.cn" | 598 | + url: "https://pub.dartlang.org" |
599 | source: hosted | 599 | source: hosted |
600 | version: "1.0.3" | 600 | version: "1.0.3" |
601 | js: | 601 | js: |
602 | dependency: transitive | 602 | dependency: transitive |
603 | description: | 603 | description: |
604 | name: js | 604 | name: js |
605 | - url: "https://pub.flutter-io.cn" | 605 | + url: "https://pub.dartlang.org" |
606 | source: hosted | 606 | source: hosted |
607 | version: "0.6.3" | 607 | version: "0.6.3" |
608 | json_annotation: | 608 | json_annotation: |
609 | dependency: "direct main" | 609 | dependency: "direct main" |
610 | description: | 610 | description: |
611 | name: json_annotation | 611 | name: json_annotation |
612 | - url: "https://pub.flutter-io.cn" | 612 | + url: "https://pub.dartlang.org" |
613 | source: hosted | 613 | source: hosted |
614 | version: "4.4.0" | 614 | version: "4.4.0" |
615 | json_serializable: | 615 | json_serializable: |
616 | dependency: "direct dev" | 616 | dependency: "direct dev" |
617 | description: | 617 | description: |
618 | name: json_serializable | 618 | name: json_serializable |
619 | - url: "https://pub.flutter-io.cn" | 619 | + url: "https://pub.dartlang.org" |
620 | source: hosted | 620 | source: hosted |
621 | version: "6.1.6" | 621 | version: "6.1.6" |
622 | keyboard_actions: | 622 | keyboard_actions: |
623 | dependency: "direct main" | 623 | dependency: "direct main" |
624 | description: | 624 | description: |
625 | name: keyboard_actions | 625 | name: keyboard_actions |
626 | - url: "https://pub.flutter-io.cn" | 626 | + url: "https://pub.dartlang.org" |
627 | source: hosted | 627 | source: hosted |
628 | version: "3.4.7" | 628 | version: "3.4.7" |
629 | lint: | 629 | lint: |
630 | dependency: transitive | 630 | dependency: transitive |
631 | description: | 631 | description: |
632 | name: lint | 632 | name: lint |
633 | - url: "https://pub.flutter-io.cn" | 633 | + url: "https://pub.dartlang.org" |
634 | source: hosted | 634 | source: hosted |
635 | version: "1.8.2" | 635 | version: "1.8.2" |
636 | lints: | 636 | lints: |
637 | dependency: transitive | 637 | dependency: transitive |
638 | description: | 638 | description: |
639 | name: lints | 639 | name: lints |
640 | - url: "https://pub.flutter-io.cn" | 640 | + url: "https://pub.dartlang.org" |
641 | source: hosted | 641 | source: hosted |
642 | version: "1.0.1" | 642 | version: "1.0.1" |
643 | logger: | 643 | logger: |
644 | dependency: transitive | 644 | dependency: transitive |
645 | description: | 645 | description: |
646 | name: logger | 646 | name: logger |
647 | - url: "https://pub.flutter-io.cn" | 647 | + url: "https://pub.dartlang.org" |
648 | source: hosted | 648 | source: hosted |
649 | version: "1.1.0" | 649 | version: "1.1.0" |
650 | logging: | 650 | logging: |
651 | dependency: transitive | 651 | dependency: transitive |
652 | description: | 652 | description: |
653 | name: logging | 653 | name: logging |
654 | - url: "https://pub.flutter-io.cn" | 654 | + url: "https://pub.dartlang.org" |
655 | source: hosted | 655 | source: hosted |
656 | version: "1.0.2" | 656 | version: "1.0.2" |
657 | matcher: | 657 | matcher: |
658 | dependency: transitive | 658 | dependency: transitive |
659 | description: | 659 | description: |
660 | name: matcher | 660 | name: matcher |
661 | - url: "https://pub.flutter-io.cn" | 661 | + url: "https://pub.dartlang.org" |
662 | source: hosted | 662 | source: hosted |
663 | version: "0.12.11" | 663 | version: "0.12.11" |
664 | material_color_utilities: | 664 | material_color_utilities: |
665 | dependency: transitive | 665 | dependency: transitive |
666 | description: | 666 | description: |
667 | name: material_color_utilities | 667 | name: material_color_utilities |
668 | - url: "https://pub.flutter-io.cn" | 668 | + url: "https://pub.dartlang.org" |
669 | source: hosted | 669 | source: hosted |
670 | version: "0.1.3" | 670 | version: "0.1.3" |
671 | meta: | 671 | meta: |
672 | dependency: transitive | 672 | dependency: transitive |
673 | description: | 673 | description: |
674 | name: meta | 674 | name: meta |
675 | - url: "https://pub.flutter-io.cn" | 675 | + url: "https://pub.dartlang.org" |
676 | source: hosted | 676 | source: hosted |
677 | version: "1.7.0" | 677 | version: "1.7.0" |
678 | mime: | 678 | mime: |
679 | dependency: transitive | 679 | dependency: transitive |
680 | description: | 680 | description: |
681 | name: mime | 681 | name: mime |
682 | - url: "https://pub.flutter-io.cn" | 682 | + url: "https://pub.dartlang.org" |
683 | source: hosted | 683 | source: hosted |
684 | version: "1.0.1" | 684 | version: "1.0.1" |
685 | nested: | 685 | nested: |
686 | dependency: transitive | 686 | dependency: transitive |
687 | description: | 687 | description: |
688 | name: nested | 688 | name: nested |
689 | - url: "https://pub.flutter-io.cn" | 689 | + url: "https://pub.dartlang.org" |
690 | source: hosted | 690 | source: hosted |
691 | version: "1.0.0" | 691 | version: "1.0.0" |
692 | node_preamble: | 692 | node_preamble: |
693 | dependency: transitive | 693 | dependency: transitive |
694 | description: | 694 | description: |
695 | name: node_preamble | 695 | name: node_preamble |
696 | - url: "https://pub.flutter-io.cn" | 696 | + url: "https://pub.dartlang.org" |
697 | source: hosted | 697 | source: hosted |
698 | version: "2.0.1" | 698 | version: "2.0.1" |
699 | octo_image: | 699 | octo_image: |
700 | dependency: transitive | 700 | dependency: transitive |
701 | description: | 701 | description: |
702 | name: octo_image | 702 | name: octo_image |
703 | - url: "https://pub.flutter-io.cn" | 703 | + url: "https://pub.dartlang.org" |
704 | source: hosted | 704 | source: hosted |
705 | version: "1.0.1" | 705 | version: "1.0.1" |
706 | oktoast: | 706 | oktoast: |
707 | dependency: "direct main" | 707 | dependency: "direct main" |
708 | description: | 708 | description: |
709 | name: oktoast | 709 | name: oktoast |
710 | - url: "https://pub.flutter-io.cn" | 710 | + url: "https://pub.dartlang.org" |
711 | source: hosted | 711 | source: hosted |
712 | version: "3.1.5" | 712 | version: "3.1.5" |
713 | package_config: | 713 | package_config: |
714 | dependency: transitive | 714 | dependency: transitive |
715 | description: | 715 | description: |
716 | name: package_config | 716 | name: package_config |
717 | - url: "https://pub.flutter-io.cn" | 717 | + url: "https://pub.dartlang.org" |
718 | source: hosted | 718 | source: hosted |
719 | version: "2.0.2" | 719 | version: "2.0.2" |
720 | path: | 720 | path: |
721 | dependency: transitive | 721 | dependency: transitive |
722 | description: | 722 | description: |
723 | name: path | 723 | name: path |
724 | - url: "https://pub.flutter-io.cn" | 724 | + url: "https://pub.dartlang.org" |
725 | source: hosted | 725 | source: hosted |
726 | version: "1.8.0" | 726 | version: "1.8.0" |
727 | path_provider: | 727 | path_provider: |
728 | dependency: "direct main" | 728 | dependency: "direct main" |
729 | description: | 729 | description: |
730 | name: path_provider | 730 | name: path_provider |
731 | - url: "https://pub.flutter-io.cn" | 731 | + url: "https://pub.dartlang.org" |
732 | source: hosted | 732 | source: hosted |
733 | version: "2.0.9" | 733 | version: "2.0.9" |
734 | path_provider_android: | 734 | path_provider_android: |
735 | dependency: transitive | 735 | dependency: transitive |
736 | description: | 736 | description: |
737 | name: path_provider_android | 737 | name: path_provider_android |
738 | - url: "https://pub.flutter-io.cn" | 738 | + url: "https://pub.dartlang.org" |
739 | source: hosted | 739 | source: hosted |
740 | version: "2.0.12" | 740 | version: "2.0.12" |
741 | path_provider_ios: | 741 | path_provider_ios: |
742 | dependency: transitive | 742 | dependency: transitive |
743 | description: | 743 | description: |
744 | name: path_provider_ios | 744 | name: path_provider_ios |
745 | - url: "https://pub.flutter-io.cn" | 745 | + url: "https://pub.dartlang.org" |
746 | source: hosted | 746 | source: hosted |
747 | version: "2.0.8" | 747 | version: "2.0.8" |
748 | path_provider_linux: | 748 | path_provider_linux: |
749 | dependency: transitive | 749 | dependency: transitive |
750 | description: | 750 | description: |
751 | name: path_provider_linux | 751 | name: path_provider_linux |
752 | - url: "https://pub.flutter-io.cn" | 752 | + url: "https://pub.dartlang.org" |
753 | source: hosted | 753 | source: hosted |
754 | version: "2.1.5" | 754 | version: "2.1.5" |
755 | path_provider_macos: | 755 | path_provider_macos: |
756 | dependency: transitive | 756 | dependency: transitive |
757 | description: | 757 | description: |
758 | name: path_provider_macos | 758 | name: path_provider_macos |
759 | - url: "https://pub.flutter-io.cn" | 759 | + url: "https://pub.dartlang.org" |
760 | source: hosted | 760 | source: hosted |
761 | version: "2.0.5" | 761 | version: "2.0.5" |
762 | path_provider_platform_interface: | 762 | path_provider_platform_interface: |
763 | dependency: transitive | 763 | dependency: transitive |
764 | description: | 764 | description: |
765 | name: path_provider_platform_interface | 765 | name: path_provider_platform_interface |
766 | - url: "https://pub.flutter-io.cn" | 766 | + url: "https://pub.dartlang.org" |
767 | source: hosted | 767 | source: hosted |
768 | version: "2.0.3" | 768 | version: "2.0.3" |
769 | path_provider_windows: | 769 | path_provider_windows: |
770 | dependency: transitive | 770 | dependency: transitive |
771 | description: | 771 | description: |
772 | name: path_provider_windows | 772 | name: path_provider_windows |
773 | - url: "https://pub.flutter-io.cn" | 773 | + url: "https://pub.dartlang.org" |
774 | source: hosted | 774 | source: hosted |
775 | version: "2.0.5" | 775 | version: "2.0.5" |
776 | pausable_timer: | 776 | pausable_timer: |
777 | dependency: "direct main" | 777 | dependency: "direct main" |
778 | description: | 778 | description: |
779 | name: pausable_timer | 779 | name: pausable_timer |
780 | - url: "https://pub.flutter-io.cn" | 780 | + url: "https://pub.dartlang.org" |
781 | source: hosted | 781 | source: hosted |
782 | version: "1.0.0+4" | 782 | version: "1.0.0+4" |
783 | pedantic: | 783 | pedantic: |
784 | dependency: transitive | 784 | dependency: transitive |
785 | description: | 785 | description: |
786 | name: pedantic | 786 | name: pedantic |
787 | - url: "https://pub.flutter-io.cn" | 787 | + url: "https://pub.dartlang.org" |
788 | source: hosted | 788 | source: hosted |
789 | version: "1.11.1" | 789 | version: "1.11.1" |
790 | permission_handler: | 790 | permission_handler: |
791 | dependency: "direct dev" | 791 | dependency: "direct dev" |
792 | description: | 792 | description: |
793 | name: permission_handler | 793 | name: permission_handler |
794 | - url: "https://pub.flutter-io.cn" | 794 | + url: "https://pub.dartlang.org" |
795 | source: hosted | 795 | source: hosted |
796 | version: "9.2.0" | 796 | version: "9.2.0" |
797 | permission_handler_android: | 797 | permission_handler_android: |
798 | dependency: transitive | 798 | dependency: transitive |
799 | description: | 799 | description: |
800 | name: permission_handler_android | 800 | name: permission_handler_android |
801 | - url: "https://pub.flutter-io.cn" | 801 | + url: "https://pub.dartlang.org" |
802 | source: hosted | 802 | source: hosted |
803 | version: "9.0.2+1" | 803 | version: "9.0.2+1" |
804 | permission_handler_apple: | 804 | permission_handler_apple: |
805 | dependency: transitive | 805 | dependency: transitive |
806 | description: | 806 | description: |
807 | name: permission_handler_apple | 807 | name: permission_handler_apple |
808 | - url: "https://pub.flutter-io.cn" | 808 | + url: "https://pub.dartlang.org" |
809 | source: hosted | 809 | source: hosted |
810 | version: "9.0.4" | 810 | version: "9.0.4" |
811 | permission_handler_platform_interface: | 811 | permission_handler_platform_interface: |
812 | dependency: transitive | 812 | dependency: transitive |
813 | description: | 813 | description: |
814 | name: permission_handler_platform_interface | 814 | name: permission_handler_platform_interface |
815 | - url: "https://pub.flutter-io.cn" | 815 | + url: "https://pub.dartlang.org" |
816 | source: hosted | 816 | source: hosted |
817 | version: "3.7.0" | 817 | version: "3.7.0" |
818 | permission_handler_windows: | 818 | permission_handler_windows: |
819 | dependency: transitive | 819 | dependency: transitive |
820 | description: | 820 | description: |
821 | name: permission_handler_windows | 821 | name: permission_handler_windows |
822 | - url: "https://pub.flutter-io.cn" | 822 | + url: "https://pub.dartlang.org" |
823 | source: hosted | 823 | source: hosted |
824 | version: "0.1.0" | 824 | version: "0.1.0" |
825 | petitparser: | 825 | petitparser: |
826 | dependency: transitive | 826 | dependency: transitive |
827 | description: | 827 | description: |
828 | name: petitparser | 828 | name: petitparser |
829 | - url: "https://pub.flutter-io.cn" | 829 | + url: "https://pub.dartlang.org" |
830 | source: hosted | 830 | source: hosted |
831 | version: "4.4.0" | 831 | version: "4.4.0" |
832 | platform: | 832 | platform: |
833 | dependency: transitive | 833 | dependency: transitive |
834 | description: | 834 | description: |
835 | name: platform | 835 | name: platform |
836 | - url: "https://pub.flutter-io.cn" | 836 | + url: "https://pub.dartlang.org" |
837 | source: hosted | 837 | source: hosted |
838 | version: "3.1.0" | 838 | version: "3.1.0" |
839 | plugin_platform_interface: | 839 | plugin_platform_interface: |
840 | dependency: transitive | 840 | dependency: transitive |
841 | description: | 841 | description: |
842 | name: plugin_platform_interface | 842 | name: plugin_platform_interface |
843 | - url: "https://pub.flutter-io.cn" | 843 | + url: "https://pub.dartlang.org" |
844 | source: hosted | 844 | source: hosted |
845 | version: "2.1.2" | 845 | version: "2.1.2" |
846 | pool: | 846 | pool: |
847 | dependency: transitive | 847 | dependency: transitive |
848 | description: | 848 | description: |
849 | name: pool | 849 | name: pool |
850 | - url: "https://pub.flutter-io.cn" | 850 | + url: "https://pub.dartlang.org" |
851 | source: hosted | 851 | source: hosted |
852 | version: "1.5.0" | 852 | version: "1.5.0" |
853 | process: | 853 | process: |
854 | dependency: transitive | 854 | dependency: transitive |
855 | description: | 855 | description: |
856 | name: process | 856 | name: process |
857 | - url: "https://pub.flutter-io.cn" | 857 | + url: "https://pub.dartlang.org" |
858 | source: hosted | 858 | source: hosted |
859 | version: "4.2.4" | 859 | version: "4.2.4" |
860 | provider: | 860 | provider: |
861 | dependency: "direct main" | 861 | dependency: "direct main" |
862 | description: | 862 | description: |
863 | name: provider | 863 | name: provider |
864 | - url: "https://pub.flutter-io.cn" | 864 | + url: "https://pub.dartlang.org" |
865 | source: hosted | 865 | source: hosted |
866 | version: "6.0.2" | 866 | version: "6.0.2" |
867 | pub_semver: | 867 | pub_semver: |
868 | dependency: transitive | 868 | dependency: transitive |
869 | description: | 869 | description: |
870 | name: pub_semver | 870 | name: pub_semver |
871 | - url: "https://pub.flutter-io.cn" | 871 | + url: "https://pub.dartlang.org" |
872 | source: hosted | 872 | source: hosted |
873 | version: "2.1.1" | 873 | version: "2.1.1" |
874 | pubspec_parse: | 874 | pubspec_parse: |
875 | dependency: transitive | 875 | dependency: transitive |
876 | description: | 876 | description: |
877 | name: pubspec_parse | 877 | name: pubspec_parse |
878 | - url: "https://pub.flutter-io.cn" | 878 | + url: "https://pub.dartlang.org" |
879 | source: hosted | 879 | source: hosted |
880 | version: "1.2.0" | 880 | version: "1.2.0" |
881 | qr_code_scanner: | 881 | qr_code_scanner: |
882 | dependency: "direct main" | 882 | dependency: "direct main" |
883 | description: | 883 | description: |
884 | name: qr_code_scanner | 884 | name: qr_code_scanner |
885 | - url: "https://pub.flutter-io.cn" | 885 | + url: "https://pub.dartlang.org" |
886 | source: hosted | 886 | source: hosted |
887 | version: "0.7.0" | 887 | version: "0.7.0" |
888 | quick_actions: | 888 | quick_actions: |
889 | dependency: "direct main" | 889 | dependency: "direct main" |
890 | description: | 890 | description: |
891 | name: quick_actions | 891 | name: quick_actions |
892 | - url: "https://pub.flutter-io.cn" | 892 | + url: "https://pub.dartlang.org" |
893 | source: hosted | 893 | source: hosted |
894 | version: "0.6.0+10" | 894 | version: "0.6.0+10" |
895 | quick_actions_android: | 895 | quick_actions_android: |
896 | dependency: transitive | 896 | dependency: transitive |
897 | description: | 897 | description: |
898 | name: quick_actions_android | 898 | name: quick_actions_android |
899 | - url: "https://pub.flutter-io.cn" | 899 | + url: "https://pub.dartlang.org" |
900 | source: hosted | 900 | source: hosted |
901 | version: "0.6.0+9" | 901 | version: "0.6.0+9" |
902 | quick_actions_ios: | 902 | quick_actions_ios: |
903 | dependency: transitive | 903 | dependency: transitive |
904 | description: | 904 | description: |
905 | name: quick_actions_ios | 905 | name: quick_actions_ios |
906 | - url: "https://pub.flutter-io.cn" | 906 | + url: "https://pub.dartlang.org" |
907 | source: hosted | 907 | source: hosted |
908 | version: "0.6.0+9" | 908 | version: "0.6.0+9" |
909 | quick_actions_platform_interface: | 909 | quick_actions_platform_interface: |
910 | dependency: transitive | 910 | dependency: transitive |
911 | description: | 911 | description: |
912 | name: quick_actions_platform_interface | 912 | name: quick_actions_platform_interface |
913 | - url: "https://pub.flutter-io.cn" | 913 | + url: "https://pub.dartlang.org" |
914 | source: hosted | 914 | source: hosted |
915 | version: "1.0.2" | 915 | version: "1.0.2" |
916 | quiver: | 916 | quiver: |
917 | dependency: transitive | 917 | dependency: transitive |
918 | description: | 918 | description: |
919 | name: quiver | 919 | name: quiver |
920 | - url: "https://pub.flutter-io.cn" | 920 | + url: "https://pub.dartlang.org" |
921 | source: hosted | 921 | source: hosted |
922 | version: "3.0.1+1" | 922 | version: "3.0.1+1" |
923 | rational: | 923 | rational: |
924 | dependency: transitive | 924 | dependency: transitive |
925 | description: | 925 | description: |
926 | name: rational | 926 | name: rational |
927 | - url: "https://pub.flutter-io.cn" | 927 | + url: "https://pub.dartlang.org" |
928 | source: hosted | 928 | source: hosted |
929 | version: "1.2.1" | 929 | version: "1.2.1" |
930 | recase: | 930 | recase: |
931 | dependency: transitive | 931 | dependency: transitive |
932 | description: | 932 | description: |
933 | name: recase | 933 | name: recase |
934 | - url: "https://pub.flutter-io.cn" | 934 | + url: "https://pub.dartlang.org" |
935 | source: hosted | 935 | source: hosted |
936 | version: "4.0.0" | 936 | version: "4.0.0" |
937 | rxdart: | 937 | rxdart: |
938 | dependency: "direct main" | 938 | dependency: "direct main" |
939 | description: | 939 | description: |
940 | name: rxdart | 940 | name: rxdart |
941 | - url: "https://pub.flutter-io.cn" | 941 | + url: "https://pub.dartlang.org" |
942 | source: hosted | 942 | source: hosted |
943 | version: "0.27.3" | 943 | version: "0.27.3" |
944 | safemap: | 944 | safemap: |
945 | dependency: "direct main" | 945 | dependency: "direct main" |
946 | description: | 946 | description: |
947 | name: safemap | 947 | name: safemap |
948 | - url: "https://pub.flutter-io.cn" | 948 | + url: "https://pub.dartlang.org" |
949 | source: hosted | 949 | source: hosted |
950 | version: "2.1.0" | 950 | version: "2.1.0" |
951 | shared_preferences: | 951 | shared_preferences: |
952 | dependency: transitive | 952 | dependency: transitive |
953 | description: | 953 | description: |
954 | name: shared_preferences | 954 | name: shared_preferences |
955 | - url: "https://pub.flutter-io.cn" | 955 | + url: "https://pub.dartlang.org" |
956 | source: hosted | 956 | source: hosted |
957 | version: "2.0.13" | 957 | version: "2.0.13" |
958 | shared_preferences_android: | 958 | shared_preferences_android: |
959 | dependency: transitive | 959 | dependency: transitive |
960 | description: | 960 | description: |
961 | name: shared_preferences_android | 961 | name: shared_preferences_android |
962 | - url: "https://pub.flutter-io.cn" | 962 | + url: "https://pub.dartlang.org" |
963 | source: hosted | 963 | source: hosted |
964 | version: "2.0.11" | 964 | version: "2.0.11" |
965 | shared_preferences_ios: | 965 | shared_preferences_ios: |
966 | dependency: transitive | 966 | dependency: transitive |
967 | description: | 967 | description: |
968 | name: shared_preferences_ios | 968 | name: shared_preferences_ios |
969 | - url: "https://pub.flutter-io.cn" | 969 | + url: "https://pub.dartlang.org" |
970 | source: hosted | 970 | source: hosted |
971 | version: "2.1.0" | 971 | version: "2.1.0" |
972 | shared_preferences_linux: | 972 | shared_preferences_linux: |
973 | dependency: transitive | 973 | dependency: transitive |
974 | description: | 974 | description: |
975 | name: shared_preferences_linux | 975 | name: shared_preferences_linux |
976 | - url: "https://pub.flutter-io.cn" | 976 | + url: "https://pub.dartlang.org" |
977 | source: hosted | 977 | source: hosted |
978 | version: "2.1.0" | 978 | version: "2.1.0" |
979 | shared_preferences_macos: | 979 | shared_preferences_macos: |
980 | dependency: transitive | 980 | dependency: transitive |
981 | description: | 981 | description: |
982 | name: shared_preferences_macos | 982 | name: shared_preferences_macos |
983 | - url: "https://pub.flutter-io.cn" | 983 | + url: "https://pub.dartlang.org" |
984 | source: hosted | 984 | source: hosted |
985 | version: "2.0.3" | 985 | version: "2.0.3" |
986 | shared_preferences_platform_interface: | 986 | shared_preferences_platform_interface: |
987 | dependency: transitive | 987 | dependency: transitive |
988 | description: | 988 | description: |
989 | name: shared_preferences_platform_interface | 989 | name: shared_preferences_platform_interface |
990 | - url: "https://pub.flutter-io.cn" | 990 | + url: "https://pub.dartlang.org" |
991 | source: hosted | 991 | source: hosted |
992 | version: "2.0.0" | 992 | version: "2.0.0" |
993 | shared_preferences_web: | 993 | shared_preferences_web: |
994 | dependency: transitive | 994 | dependency: transitive |
995 | description: | 995 | description: |
996 | name: shared_preferences_web | 996 | name: shared_preferences_web |
997 | - url: "https://pub.flutter-io.cn" | 997 | + url: "https://pub.dartlang.org" |
998 | source: hosted | 998 | source: hosted |
999 | version: "2.0.3" | 999 | version: "2.0.3" |
1000 | shared_preferences_windows: | 1000 | shared_preferences_windows: |
1001 | dependency: transitive | 1001 | dependency: transitive |
1002 | description: | 1002 | description: |
1003 | name: shared_preferences_windows | 1003 | name: shared_preferences_windows |
1004 | - url: "https://pub.flutter-io.cn" | 1004 | + url: "https://pub.dartlang.org" |
1005 | source: hosted | 1005 | source: hosted |
1006 | version: "2.1.0" | 1006 | version: "2.1.0" |
1007 | shelf: | 1007 | shelf: |
1008 | dependency: transitive | 1008 | dependency: transitive |
1009 | description: | 1009 | description: |
1010 | name: shelf | 1010 | name: shelf |
1011 | - url: "https://pub.flutter-io.cn" | 1011 | + url: "https://pub.dartlang.org" |
1012 | source: hosted | 1012 | source: hosted |
1013 | version: "1.3.0" | 1013 | version: "1.3.0" |
1014 | shelf_packages_handler: | 1014 | shelf_packages_handler: |
1015 | dependency: transitive | 1015 | dependency: transitive |
1016 | description: | 1016 | description: |
1017 | name: shelf_packages_handler | 1017 | name: shelf_packages_handler |
1018 | - url: "https://pub.flutter-io.cn" | 1018 | + url: "https://pub.dartlang.org" |
1019 | source: hosted | 1019 | source: hosted |
1020 | version: "3.0.0" | 1020 | version: "3.0.0" |
1021 | shelf_static: | 1021 | shelf_static: |
1022 | dependency: transitive | 1022 | dependency: transitive |
1023 | description: | 1023 | description: |
1024 | name: shelf_static | 1024 | name: shelf_static |
1025 | - url: "https://pub.flutter-io.cn" | 1025 | + url: "https://pub.dartlang.org" |
1026 | source: hosted | 1026 | source: hosted |
1027 | version: "1.1.0" | 1027 | version: "1.1.0" |
1028 | shelf_web_socket: | 1028 | shelf_web_socket: |
1029 | dependency: transitive | 1029 | dependency: transitive |
1030 | description: | 1030 | description: |
1031 | name: shelf_web_socket | 1031 | name: shelf_web_socket |
1032 | - url: "https://pub.flutter-io.cn" | 1032 | + url: "https://pub.dartlang.org" |
1033 | source: hosted | 1033 | source: hosted |
1034 | version: "1.0.1" | 1034 | version: "1.0.1" |
1035 | sign_in_with_apple: | 1035 | sign_in_with_apple: |
1036 | dependency: "direct main" | 1036 | dependency: "direct main" |
1037 | description: | 1037 | description: |
1038 | name: sign_in_with_apple | 1038 | name: sign_in_with_apple |
1039 | - url: "https://pub.flutter-io.cn" | 1039 | + url: "https://pub.dartlang.org" |
1040 | source: hosted | 1040 | source: hosted |
1041 | version: "3.3.0" | 1041 | version: "3.3.0" |
1042 | sign_in_with_apple_platform_interface: | 1042 | sign_in_with_apple_platform_interface: |
1043 | dependency: transitive | 1043 | dependency: transitive |
1044 | description: | 1044 | description: |
1045 | name: sign_in_with_apple_platform_interface | 1045 | name: sign_in_with_apple_platform_interface |
1046 | - url: "https://pub.flutter-io.cn" | 1046 | + url: "https://pub.dartlang.org" |
1047 | source: hosted | 1047 | source: hosted |
1048 | version: "1.0.0" | 1048 | version: "1.0.0" |
1049 | sign_in_with_apple_web: | 1049 | sign_in_with_apple_web: |
1050 | dependency: transitive | 1050 | dependency: transitive |
1051 | description: | 1051 | description: |
1052 | name: sign_in_with_apple_web | 1052 | name: sign_in_with_apple_web |
1053 | - url: "https://pub.flutter-io.cn" | 1053 | + url: "https://pub.dartlang.org" |
1054 | source: hosted | 1054 | source: hosted |
1055 | version: "1.0.1" | 1055 | version: "1.0.1" |
1056 | sky_engine: | 1056 | sky_engine: |
... | @@ -1062,385 +1062,385 @@ packages: | ... | @@ -1062,385 +1062,385 @@ packages: |
1062 | dependency: transitive | 1062 | dependency: transitive |
1063 | description: | 1063 | description: |
1064 | name: source_gen | 1064 | name: source_gen |
1065 | - url: "https://pub.flutter-io.cn" | 1065 | + url: "https://pub.dartlang.org" |
1066 | source: hosted | 1066 | source: hosted |
1067 | version: "1.2.2" | 1067 | version: "1.2.2" |
1068 | source_helper: | 1068 | source_helper: |
1069 | dependency: transitive | 1069 | dependency: transitive |
1070 | description: | 1070 | description: |
1071 | name: source_helper | 1071 | name: source_helper |
1072 | - url: "https://pub.flutter-io.cn" | 1072 | + url: "https://pub.dartlang.org" |
1073 | source: hosted | 1073 | source: hosted |
1074 | version: "1.3.2" | 1074 | version: "1.3.2" |
1075 | source_map_stack_trace: | 1075 | source_map_stack_trace: |
1076 | dependency: transitive | 1076 | dependency: transitive |
1077 | description: | 1077 | description: |
1078 | name: source_map_stack_trace | 1078 | name: source_map_stack_trace |
1079 | - url: "https://pub.flutter-io.cn" | 1079 | + url: "https://pub.dartlang.org" |
1080 | source: hosted | 1080 | source: hosted |
1081 | version: "2.1.0" | 1081 | version: "2.1.0" |
1082 | source_maps: | 1082 | source_maps: |
1083 | dependency: transitive | 1083 | dependency: transitive |
1084 | description: | 1084 | description: |
1085 | name: source_maps | 1085 | name: source_maps |
1086 | - url: "https://pub.flutter-io.cn" | 1086 | + url: "https://pub.dartlang.org" |
1087 | source: hosted | 1087 | source: hosted |
1088 | version: "0.10.10" | 1088 | version: "0.10.10" |
1089 | source_span: | 1089 | source_span: |
1090 | dependency: transitive | 1090 | dependency: transitive |
1091 | description: | 1091 | description: |
1092 | name: source_span | 1092 | name: source_span |
1093 | - url: "https://pub.flutter-io.cn" | 1093 | + url: "https://pub.dartlang.org" |
1094 | source: hosted | 1094 | source: hosted |
1095 | version: "1.8.1" | 1095 | version: "1.8.1" |
1096 | sp_util: | 1096 | sp_util: |
1097 | dependency: transitive | 1097 | dependency: transitive |
1098 | description: | 1098 | description: |
1099 | name: sp_util | 1099 | name: sp_util |
1100 | - url: "https://pub.flutter-io.cn" | 1100 | + url: "https://pub.dartlang.org" |
1101 | source: hosted | 1101 | source: hosted |
1102 | version: "2.0.3" | 1102 | version: "2.0.3" |
1103 | sprintf: | 1103 | sprintf: |
1104 | dependency: "direct main" | 1104 | dependency: "direct main" |
1105 | description: | 1105 | description: |
1106 | name: sprintf | 1106 | name: sprintf |
1107 | - url: "https://pub.flutter-io.cn" | 1107 | + url: "https://pub.dartlang.org" |
1108 | source: hosted | 1108 | source: hosted |
1109 | version: "6.0.0" | 1109 | version: "6.0.0" |
1110 | sqflite: | 1110 | sqflite: |
1111 | dependency: transitive | 1111 | dependency: transitive |
1112 | description: | 1112 | description: |
1113 | name: sqflite | 1113 | name: sqflite |
1114 | - url: "https://pub.flutter-io.cn" | 1114 | + url: "https://pub.dartlang.org" |
1115 | source: hosted | 1115 | source: hosted |
1116 | - version: "2.0.2" | 1116 | + version: "2.0.2+1" |
1117 | sqflite_common: | 1117 | sqflite_common: |
1118 | dependency: transitive | 1118 | dependency: transitive |
1119 | description: | 1119 | description: |
1120 | name: sqflite_common | 1120 | name: sqflite_common |
1121 | - url: "https://pub.flutter-io.cn" | 1121 | + url: "https://pub.dartlang.org" |
1122 | source: hosted | 1122 | source: hosted |
1123 | - version: "2.2.1" | 1123 | + version: "2.2.1+1" |
1124 | stack_trace: | 1124 | stack_trace: |
1125 | dependency: transitive | 1125 | dependency: transitive |
1126 | description: | 1126 | description: |
1127 | name: stack_trace | 1127 | name: stack_trace |
1128 | - url: "https://pub.flutter-io.cn" | 1128 | + url: "https://pub.dartlang.org" |
1129 | source: hosted | 1129 | source: hosted |
1130 | version: "1.10.0" | 1130 | version: "1.10.0" |
1131 | sticky_headers: | 1131 | sticky_headers: |
1132 | dependency: "direct main" | 1132 | dependency: "direct main" |
1133 | description: | 1133 | description: |
1134 | name: sticky_headers | 1134 | name: sticky_headers |
1135 | - url: "https://pub.flutter-io.cn" | 1135 | + url: "https://pub.dartlang.org" |
1136 | source: hosted | 1136 | source: hosted |
1137 | version: "0.2.0" | 1137 | version: "0.2.0" |
1138 | stream_channel: | 1138 | stream_channel: |
1139 | dependency: transitive | 1139 | dependency: transitive |
1140 | description: | 1140 | description: |
1141 | name: stream_channel | 1141 | name: stream_channel |
1142 | - url: "https://pub.flutter-io.cn" | 1142 | + url: "https://pub.dartlang.org" |
1143 | source: hosted | 1143 | source: hosted |
1144 | version: "2.1.0" | 1144 | version: "2.1.0" |
1145 | stream_transform: | 1145 | stream_transform: |
1146 | dependency: transitive | 1146 | dependency: transitive |
1147 | description: | 1147 | description: |
1148 | name: stream_transform | 1148 | name: stream_transform |
1149 | - url: "https://pub.flutter-io.cn" | 1149 | + url: "https://pub.dartlang.org" |
1150 | source: hosted | 1150 | source: hosted |
1151 | version: "2.0.0" | 1151 | version: "2.0.0" |
1152 | string_scanner: | 1152 | string_scanner: |
1153 | dependency: transitive | 1153 | dependency: transitive |
1154 | description: | 1154 | description: |
1155 | name: string_scanner | 1155 | name: string_scanner |
1156 | - url: "https://pub.flutter-io.cn" | 1156 | + url: "https://pub.dartlang.org" |
1157 | source: hosted | 1157 | source: hosted |
1158 | version: "1.1.0" | 1158 | version: "1.1.0" |
1159 | sync_http: | 1159 | sync_http: |
1160 | dependency: transitive | 1160 | dependency: transitive |
1161 | description: | 1161 | description: |
1162 | name: sync_http | 1162 | name: sync_http |
1163 | - url: "https://pub.flutter-io.cn" | 1163 | + url: "https://pub.dartlang.org" |
1164 | source: hosted | 1164 | source: hosted |
1165 | version: "0.3.0" | 1165 | version: "0.3.0" |
1166 | synchronized: | 1166 | synchronized: |
1167 | dependency: transitive | 1167 | dependency: transitive |
1168 | description: | 1168 | description: |
1169 | name: synchronized | 1169 | name: synchronized |
1170 | - url: "https://pub.flutter-io.cn" | 1170 | + url: "https://pub.dartlang.org" |
1171 | source: hosted | 1171 | source: hosted |
1172 | version: "3.0.0+2" | 1172 | version: "3.0.0+2" |
1173 | tapped: | 1173 | tapped: |
1174 | dependency: "direct main" | 1174 | dependency: "direct main" |
1175 | description: | 1175 | description: |
1176 | name: tapped | 1176 | name: tapped |
1177 | - url: "https://pub.flutter-io.cn" | 1177 | + url: "https://pub.dartlang.org" |
1178 | source: hosted | 1178 | source: hosted |
1179 | version: "2.0.0" | 1179 | version: "2.0.0" |
1180 | term_glyph: | 1180 | term_glyph: |
1181 | dependency: transitive | 1181 | dependency: transitive |
1182 | description: | 1182 | description: |
1183 | name: term_glyph | 1183 | name: term_glyph |
1184 | - url: "https://pub.flutter-io.cn" | 1184 | + url: "https://pub.dartlang.org" |
1185 | source: hosted | 1185 | source: hosted |
1186 | version: "1.2.0" | 1186 | version: "1.2.0" |
1187 | test: | 1187 | test: |
1188 | dependency: "direct dev" | 1188 | dependency: "direct dev" |
1189 | description: | 1189 | description: |
1190 | name: test | 1190 | name: test |
1191 | - url: "https://pub.flutter-io.cn" | 1191 | + url: "https://pub.dartlang.org" |
1192 | source: hosted | 1192 | source: hosted |
1193 | version: "1.19.5" | 1193 | version: "1.19.5" |
1194 | test_api: | 1194 | test_api: |
1195 | dependency: transitive | 1195 | dependency: transitive |
1196 | description: | 1196 | description: |
1197 | name: test_api | 1197 | name: test_api |
1198 | - url: "https://pub.flutter-io.cn" | 1198 | + url: "https://pub.dartlang.org" |
1199 | source: hosted | 1199 | source: hosted |
1200 | version: "0.4.8" | 1200 | version: "0.4.8" |
1201 | test_core: | 1201 | test_core: |
1202 | dependency: transitive | 1202 | dependency: transitive |
1203 | description: | 1203 | description: |
1204 | name: test_core | 1204 | name: test_core |
1205 | - url: "https://pub.flutter-io.cn" | 1205 | + url: "https://pub.dartlang.org" |
1206 | source: hosted | 1206 | source: hosted |
1207 | version: "0.4.9" | 1207 | version: "0.4.9" |
1208 | timing: | 1208 | timing: |
1209 | dependency: transitive | 1209 | dependency: transitive |
1210 | description: | 1210 | description: |
1211 | name: timing | 1211 | name: timing |
1212 | - url: "https://pub.flutter-io.cn" | 1212 | + url: "https://pub.dartlang.org" |
1213 | source: hosted | 1213 | source: hosted |
1214 | version: "1.0.0" | 1214 | version: "1.0.0" |
1215 | typed_data: | 1215 | typed_data: |
1216 | dependency: transitive | 1216 | dependency: transitive |
1217 | description: | 1217 | description: |
1218 | name: typed_data | 1218 | name: typed_data |
1219 | - url: "https://pub.flutter-io.cn" | 1219 | + url: "https://pub.dartlang.org" |
1220 | source: hosted | 1220 | source: hosted |
1221 | version: "1.3.0" | 1221 | version: "1.3.0" |
1222 | universal_io: | 1222 | universal_io: |
1223 | dependency: transitive | 1223 | dependency: transitive |
1224 | description: | 1224 | description: |
1225 | name: universal_io | 1225 | name: universal_io |
1226 | - url: "https://pub.flutter-io.cn" | 1226 | + url: "https://pub.dartlang.org" |
1227 | source: hosted | 1227 | source: hosted |
1228 | version: "2.0.4" | 1228 | version: "2.0.4" |
1229 | url_launcher: | 1229 | url_launcher: |
1230 | dependency: "direct main" | 1230 | dependency: "direct main" |
1231 | description: | 1231 | description: |
1232 | name: url_launcher | 1232 | name: url_launcher |
1233 | - url: "https://pub.flutter-io.cn" | 1233 | + url: "https://pub.dartlang.org" |
1234 | source: hosted | 1234 | source: hosted |
1235 | - version: "6.0.20" | 1235 | + version: "6.1.0" |
1236 | url_launcher_android: | 1236 | url_launcher_android: |
1237 | dependency: transitive | 1237 | dependency: transitive |
1238 | description: | 1238 | description: |
1239 | name: url_launcher_android | 1239 | name: url_launcher_android |
1240 | - url: "https://pub.flutter-io.cn" | 1240 | + url: "https://pub.dartlang.org" |
1241 | source: hosted | 1241 | source: hosted |
1242 | version: "6.0.15" | 1242 | version: "6.0.15" |
1243 | url_launcher_ios: | 1243 | url_launcher_ios: |
1244 | dependency: transitive | 1244 | dependency: transitive |
1245 | description: | 1245 | description: |
1246 | name: url_launcher_ios | 1246 | name: url_launcher_ios |
1247 | - url: "https://pub.flutter-io.cn" | 1247 | + url: "https://pub.dartlang.org" |
1248 | source: hosted | 1248 | source: hosted |
1249 | version: "6.0.15" | 1249 | version: "6.0.15" |
1250 | url_launcher_linux: | 1250 | url_launcher_linux: |
1251 | dependency: transitive | 1251 | dependency: transitive |
1252 | description: | 1252 | description: |
1253 | name: url_launcher_linux | 1253 | name: url_launcher_linux |
1254 | - url: "https://pub.flutter-io.cn" | 1254 | + url: "https://pub.dartlang.org" |
1255 | source: hosted | 1255 | source: hosted |
1256 | version: "3.0.0" | 1256 | version: "3.0.0" |
1257 | url_launcher_macos: | 1257 | url_launcher_macos: |
1258 | dependency: transitive | 1258 | dependency: transitive |
1259 | description: | 1259 | description: |
1260 | name: url_launcher_macos | 1260 | name: url_launcher_macos |
1261 | - url: "https://pub.flutter-io.cn" | 1261 | + url: "https://pub.dartlang.org" |
1262 | source: hosted | 1262 | source: hosted |
1263 | version: "3.0.0" | 1263 | version: "3.0.0" |
1264 | url_launcher_platform_interface: | 1264 | url_launcher_platform_interface: |
1265 | dependency: transitive | 1265 | dependency: transitive |
1266 | description: | 1266 | description: |
1267 | name: url_launcher_platform_interface | 1267 | name: url_launcher_platform_interface |
1268 | - url: "https://pub.flutter-io.cn" | 1268 | + url: "https://pub.dartlang.org" |
1269 | source: hosted | 1269 | source: hosted |
1270 | version: "2.0.5" | 1270 | version: "2.0.5" |
1271 | url_launcher_web: | 1271 | url_launcher_web: |
1272 | dependency: transitive | 1272 | dependency: transitive |
1273 | description: | 1273 | description: |
1274 | name: url_launcher_web | 1274 | name: url_launcher_web |
1275 | - url: "https://pub.flutter-io.cn" | 1275 | + url: "https://pub.dartlang.org" |
1276 | source: hosted | 1276 | source: hosted |
1277 | version: "2.0.9" | 1277 | version: "2.0.9" |
1278 | url_launcher_windows: | 1278 | url_launcher_windows: |
1279 | dependency: transitive | 1279 | dependency: transitive |
1280 | description: | 1280 | description: |
1281 | name: url_launcher_windows | 1281 | name: url_launcher_windows |
1282 | - url: "https://pub.flutter-io.cn" | 1282 | + url: "https://pub.dartlang.org" |
1283 | source: hosted | 1283 | source: hosted |
1284 | version: "3.0.0" | 1284 | version: "3.0.0" |
1285 | url_strategy: | 1285 | url_strategy: |
1286 | dependency: "direct main" | 1286 | dependency: "direct main" |
1287 | description: | 1287 | description: |
1288 | name: url_strategy | 1288 | name: url_strategy |
1289 | - url: "https://pub.flutter-io.cn" | 1289 | + url: "https://pub.dartlang.org" |
1290 | source: hosted | 1290 | source: hosted |
1291 | version: "0.2.0" | 1291 | version: "0.2.0" |
1292 | uuid: | 1292 | uuid: |
1293 | dependency: transitive | 1293 | dependency: transitive |
1294 | description: | 1294 | description: |
1295 | name: uuid | 1295 | name: uuid |
1296 | - url: "https://pub.flutter-io.cn" | 1296 | + url: "https://pub.dartlang.org" |
1297 | source: hosted | 1297 | source: hosted |
1298 | version: "3.0.6" | 1298 | version: "3.0.6" |
1299 | vector_math: | 1299 | vector_math: |
1300 | dependency: transitive | 1300 | dependency: transitive |
1301 | description: | 1301 | description: |
1302 | name: vector_math | 1302 | name: vector_math |
1303 | - url: "https://pub.flutter-io.cn" | 1303 | + url: "https://pub.dartlang.org" |
1304 | source: hosted | 1304 | source: hosted |
1305 | version: "2.1.1" | 1305 | version: "2.1.1" |
1306 | vibration: | 1306 | vibration: |
1307 | dependency: "direct main" | 1307 | dependency: "direct main" |
1308 | description: | 1308 | description: |
1309 | name: vibration | 1309 | name: vibration |
1310 | - url: "https://pub.flutter-io.cn" | 1310 | + url: "https://pub.dartlang.org" |
1311 | source: hosted | 1311 | source: hosted |
1312 | version: "1.7.4-nullsafety.0" | 1312 | version: "1.7.4-nullsafety.0" |
1313 | vibration_web: | 1313 | vibration_web: |
1314 | dependency: transitive | 1314 | dependency: transitive |
1315 | description: | 1315 | description: |
1316 | name: vibration_web | 1316 | name: vibration_web |
1317 | - url: "https://pub.flutter-io.cn" | 1317 | + url: "https://pub.dartlang.org" |
1318 | source: hosted | 1318 | source: hosted |
1319 | version: "1.6.3-nullsafety.0" | 1319 | version: "1.6.3-nullsafety.0" |
1320 | video_player: | 1320 | video_player: |
1321 | dependency: "direct main" | 1321 | dependency: "direct main" |
1322 | description: | 1322 | description: |
1323 | name: video_player | 1323 | name: video_player |
1324 | - url: "https://pub.flutter-io.cn" | 1324 | + url: "https://pub.dartlang.org" |
1325 | source: hosted | 1325 | source: hosted |
1326 | - version: "2.3.0" | 1326 | + version: "2.4.0" |
1327 | video_player_android: | 1327 | video_player_android: |
1328 | dependency: transitive | 1328 | dependency: transitive |
1329 | description: | 1329 | description: |
1330 | name: video_player_android | 1330 | name: video_player_android |
1331 | - url: "https://pub.flutter-io.cn" | 1331 | + url: "https://pub.dartlang.org" |
1332 | source: hosted | 1332 | source: hosted |
1333 | version: "2.3.2" | 1333 | version: "2.3.2" |
1334 | video_player_avfoundation: | 1334 | video_player_avfoundation: |
1335 | dependency: transitive | 1335 | dependency: transitive |
1336 | description: | 1336 | description: |
1337 | name: video_player_avfoundation | 1337 | name: video_player_avfoundation |
1338 | - url: "https://pub.flutter-io.cn" | 1338 | + url: "https://pub.dartlang.org" |
1339 | source: hosted | 1339 | source: hosted |
1340 | - version: "2.3.1" | 1340 | + version: "2.3.2" |
1341 | video_player_platform_interface: | 1341 | video_player_platform_interface: |
1342 | dependency: transitive | 1342 | dependency: transitive |
1343 | description: | 1343 | description: |
1344 | name: video_player_platform_interface | 1344 | name: video_player_platform_interface |
1345 | - url: "https://pub.flutter-io.cn" | 1345 | + url: "https://pub.dartlang.org" |
1346 | source: hosted | 1346 | source: hosted |
1347 | - version: "5.1.1" | 1347 | + version: "5.1.2" |
1348 | video_player_web: | 1348 | video_player_web: |
1349 | dependency: transitive | 1349 | dependency: transitive |
1350 | description: | 1350 | description: |
1351 | name: video_player_web | 1351 | name: video_player_web |
1352 | - url: "https://pub.flutter-io.cn" | 1352 | + url: "https://pub.dartlang.org" |
1353 | source: hosted | 1353 | source: hosted |
1354 | - version: "2.0.7" | 1354 | + version: "2.0.8" |
1355 | vm_service: | 1355 | vm_service: |
1356 | dependency: transitive | 1356 | dependency: transitive |
1357 | description: | 1357 | description: |
1358 | name: vm_service | 1358 | name: vm_service |
1359 | - url: "https://pub.flutter-io.cn" | 1359 | + url: "https://pub.dartlang.org" |
1360 | source: hosted | 1360 | source: hosted |
1361 | version: "7.5.0" | 1361 | version: "7.5.0" |
1362 | watcher: | 1362 | watcher: |
1363 | dependency: transitive | 1363 | dependency: transitive |
1364 | description: | 1364 | description: |
1365 | name: watcher | 1365 | name: watcher |
1366 | - url: "https://pub.flutter-io.cn" | 1366 | + url: "https://pub.dartlang.org" |
1367 | source: hosted | 1367 | source: hosted |
1368 | version: "1.0.1" | 1368 | version: "1.0.1" |
1369 | web_socket_channel: | 1369 | web_socket_channel: |
1370 | dependency: transitive | 1370 | dependency: transitive |
1371 | description: | 1371 | description: |
1372 | name: web_socket_channel | 1372 | name: web_socket_channel |
1373 | - url: "https://pub.flutter-io.cn" | 1373 | + url: "https://pub.dartlang.org" |
1374 | source: hosted | 1374 | source: hosted |
1375 | version: "2.1.0" | 1375 | version: "2.1.0" |
1376 | webdriver: | 1376 | webdriver: |
1377 | dependency: transitive | 1377 | dependency: transitive |
1378 | description: | 1378 | description: |
1379 | name: webdriver | 1379 | name: webdriver |
1380 | - url: "https://pub.flutter-io.cn" | 1380 | + url: "https://pub.dartlang.org" |
1381 | source: hosted | 1381 | source: hosted |
1382 | version: "3.0.0" | 1382 | version: "3.0.0" |
1383 | webkit_inspection_protocol: | 1383 | webkit_inspection_protocol: |
1384 | dependency: transitive | 1384 | dependency: transitive |
1385 | description: | 1385 | description: |
1386 | name: webkit_inspection_protocol | 1386 | name: webkit_inspection_protocol |
1387 | - url: "https://pub.flutter-io.cn" | 1387 | + url: "https://pub.dartlang.org" |
1388 | source: hosted | 1388 | source: hosted |
1389 | version: "1.0.0" | 1389 | version: "1.0.0" |
1390 | webview_flutter: | 1390 | webview_flutter: |
1391 | dependency: "direct main" | 1391 | dependency: "direct main" |
1392 | description: | 1392 | description: |
1393 | name: webview_flutter | 1393 | name: webview_flutter |
1394 | - url: "https://pub.flutter-io.cn" | 1394 | + url: "https://pub.dartlang.org" |
1395 | source: hosted | 1395 | source: hosted |
1396 | version: "3.0.2" | 1396 | version: "3.0.2" |
1397 | webview_flutter_android: | 1397 | webview_flutter_android: |
1398 | dependency: transitive | 1398 | dependency: transitive |
1399 | description: | 1399 | description: |
1400 | name: webview_flutter_android | 1400 | name: webview_flutter_android |
1401 | - url: "https://pub.flutter-io.cn" | 1401 | + url: "https://pub.dartlang.org" |
1402 | source: hosted | 1402 | source: hosted |
1403 | version: "2.8.5" | 1403 | version: "2.8.5" |
1404 | webview_flutter_platform_interface: | 1404 | webview_flutter_platform_interface: |
1405 | dependency: transitive | 1405 | dependency: transitive |
1406 | description: | 1406 | description: |
1407 | name: webview_flutter_platform_interface | 1407 | name: webview_flutter_platform_interface |
1408 | - url: "https://pub.flutter-io.cn" | 1408 | + url: "https://pub.dartlang.org" |
1409 | source: hosted | 1409 | source: hosted |
1410 | version: "1.8.1" | 1410 | version: "1.8.1" |
1411 | webview_flutter_wkwebview: | 1411 | webview_flutter_wkwebview: |
1412 | dependency: transitive | 1412 | dependency: transitive |
1413 | description: | 1413 | description: |
1414 | name: webview_flutter_wkwebview | 1414 | name: webview_flutter_wkwebview |
1415 | - url: "https://pub.flutter-io.cn" | 1415 | + url: "https://pub.dartlang.org" |
1416 | source: hosted | 1416 | source: hosted |
1417 | version: "2.7.2" | 1417 | version: "2.7.2" |
1418 | win32: | 1418 | win32: |
1419 | dependency: transitive | 1419 | dependency: transitive |
1420 | description: | 1420 | description: |
1421 | name: win32 | 1421 | name: win32 |
1422 | - url: "https://pub.flutter-io.cn" | 1422 | + url: "https://pub.dartlang.org" |
1423 | source: hosted | 1423 | source: hosted |
1424 | version: "2.5.1" | 1424 | version: "2.5.1" |
1425 | xdg_directories: | 1425 | xdg_directories: |
1426 | dependency: transitive | 1426 | dependency: transitive |
1427 | description: | 1427 | description: |
1428 | name: xdg_directories | 1428 | name: xdg_directories |
1429 | - url: "https://pub.flutter-io.cn" | 1429 | + url: "https://pub.dartlang.org" |
1430 | source: hosted | 1430 | source: hosted |
1431 | version: "0.2.0+1" | 1431 | version: "0.2.0+1" |
1432 | xml: | 1432 | xml: |
1433 | dependency: transitive | 1433 | dependency: transitive |
1434 | description: | 1434 | description: |
1435 | name: xml | 1435 | name: xml |
1436 | - url: "https://pub.flutter-io.cn" | 1436 | + url: "https://pub.dartlang.org" |
1437 | source: hosted | 1437 | source: hosted |
1438 | version: "5.3.1" | 1438 | version: "5.3.1" |
1439 | yaml: | 1439 | yaml: |
1440 | dependency: transitive | 1440 | dependency: transitive |
1441 | description: | 1441 | description: |
1442 | name: yaml | 1442 | name: yaml |
1443 | - url: "https://pub.flutter-io.cn" | 1443 | + url: "https://pub.dartlang.org" |
1444 | source: hosted | 1444 | source: hosted |
1445 | version: "3.1.0" | 1445 | version: "3.1.0" |
1446 | sdks: | 1446 | sdks: | ... | ... |
-
Please register or login to post a comment