Showing
4 changed files
with
577 additions
and
311 deletions
lib/models/nearby_response.dart
0 → 100644
1 | +class NearbyPlacesResponse { | ||
2 | + List<Results>? results; | ||
3 | + String? status; | ||
4 | + | ||
5 | + NearbyPlacesResponse({this.results, this.status}); | ||
6 | + | ||
7 | + NearbyPlacesResponse.fromJson(Map<String, dynamic> json) { | ||
8 | + if (json['results'] != null) { | ||
9 | + results = <Results>[]; | ||
10 | + json['results'].forEach((v) { | ||
11 | + results!.add(Results.fromJson(v)); | ||
12 | + }); | ||
13 | + } | ||
14 | + status = json['status']; | ||
15 | + } | ||
16 | + | ||
17 | + Map<String, dynamic> toJson() { | ||
18 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
19 | + if (this.results != null) { | ||
20 | + data['results'] = this.results!.map((v) => v.toJson()).toList(); | ||
21 | + } | ||
22 | + data['status'] = this.status; | ||
23 | + return data; | ||
24 | + } | ||
25 | +} | ||
26 | + | ||
27 | +class Results { | ||
28 | + Geometry? geometry; | ||
29 | + String? icon; | ||
30 | + String? iconBackgroundColor; | ||
31 | + String? iconMaskBaseUri; | ||
32 | + String? name; | ||
33 | + List<Photos>? photos; | ||
34 | + String? placeId; | ||
35 | + String? reference; | ||
36 | + String? scope; | ||
37 | + List<String>? types; | ||
38 | + String? vicinity; | ||
39 | + String? businessStatus; | ||
40 | + OpeningHours? openingHours; | ||
41 | + PlusCode? plusCode; | ||
42 | + dynamic rating; | ||
43 | + int? userRatingsTotal; | ||
44 | + | ||
45 | + Results( | ||
46 | + {this.geometry, | ||
47 | + this.icon, | ||
48 | + this.iconBackgroundColor, | ||
49 | + this.iconMaskBaseUri, | ||
50 | + this.name, | ||
51 | + this.photos, | ||
52 | + this.placeId, | ||
53 | + this.reference, | ||
54 | + this.scope, | ||
55 | + this.types, | ||
56 | + this.vicinity, | ||
57 | + this.businessStatus, | ||
58 | + this.openingHours, | ||
59 | + this.plusCode, | ||
60 | + this.rating, | ||
61 | + this.userRatingsTotal}); | ||
62 | + | ||
63 | + Results.fromJson(Map<String, dynamic> json) { | ||
64 | + geometry = | ||
65 | + json['geometry'] != null ? Geometry.fromJson(json['geometry']) : null; | ||
66 | + icon = json['icon']; | ||
67 | + iconBackgroundColor = json['icon_background_color']; | ||
68 | + iconMaskBaseUri = json['icon_mask_base_uri']; | ||
69 | + name = json['name']; | ||
70 | + if (json['photos'] != null) { | ||
71 | + photos = <Photos>[]; | ||
72 | + json['photos'].forEach((v) { | ||
73 | + photos!.add(Photos.fromJson(v)); | ||
74 | + }); | ||
75 | + } | ||
76 | + placeId = json['place_id']; | ||
77 | + reference = json['reference']; | ||
78 | + scope = json['scope']; | ||
79 | + types = json['types'].cast<String>(); | ||
80 | + vicinity = json['vicinity']; | ||
81 | + businessStatus = json['business_status']; | ||
82 | + openingHours = json['opening_hours'] != null | ||
83 | + ? OpeningHours.fromJson(json['opening_hours']) | ||
84 | + : null; | ||
85 | + plusCode = | ||
86 | + json['plus_code'] != null ? PlusCode.fromJson(json['plus_code']) : null; | ||
87 | + rating = json['rating']; | ||
88 | + userRatingsTotal = json['user_ratings_total']; | ||
89 | + } | ||
90 | + | ||
91 | + Map<String, dynamic> toJson() { | ||
92 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
93 | + if (this.geometry != null) { | ||
94 | + data['geometry'] = this.geometry!.toJson(); | ||
95 | + } | ||
96 | + data['icon'] = this.icon; | ||
97 | + data['icon_background_color'] = this.iconBackgroundColor; | ||
98 | + data['icon_mask_base_uri'] = this.iconMaskBaseUri; | ||
99 | + data['name'] = this.name; | ||
100 | + if (this.photos != null) { | ||
101 | + data['photos'] = this.photos!.map((v) => v.toJson()).toList(); | ||
102 | + } | ||
103 | + data['place_id'] = this.placeId; | ||
104 | + data['reference'] = this.reference; | ||
105 | + data['scope'] = this.scope; | ||
106 | + data['types'] = this.types; | ||
107 | + data['vicinity'] = this.vicinity; | ||
108 | + data['business_status'] = this.businessStatus; | ||
109 | + if (this.openingHours != null) { | ||
110 | + data['opening_hours'] = this.openingHours!.toJson(); | ||
111 | + } | ||
112 | + if (this.plusCode != null) { | ||
113 | + data['plus_code'] = this.plusCode!.toJson(); | ||
114 | + } | ||
115 | + data['rating'] = this.rating; | ||
116 | + data['user_ratings_total'] = this.userRatingsTotal; | ||
117 | + return data; | ||
118 | + } | ||
119 | +} | ||
120 | + | ||
121 | +class Geometry { | ||
122 | + Location? location; | ||
123 | + Viewport? viewport; | ||
124 | + | ||
125 | + Geometry({this.location, this.viewport}); | ||
126 | + | ||
127 | + Geometry.fromJson(Map<String, dynamic> json) { | ||
128 | + location = | ||
129 | + json['location'] != null ? Location.fromJson(json['location']) : null; | ||
130 | + viewport = | ||
131 | + json['viewport'] != null ? Viewport.fromJson(json['viewport']) : null; | ||
132 | + } | ||
133 | + | ||
134 | + Map<String, dynamic> toJson() { | ||
135 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
136 | + if (this.location != null) { | ||
137 | + data['location'] = this.location!.toJson(); | ||
138 | + } | ||
139 | + if (this.viewport != null) { | ||
140 | + data['viewport'] = this.viewport!.toJson(); | ||
141 | + } | ||
142 | + return data; | ||
143 | + } | ||
144 | +} | ||
145 | + | ||
146 | +class Location { | ||
147 | + double? lat; | ||
148 | + double? lng; | ||
149 | + | ||
150 | + Location({this.lat, this.lng}); | ||
151 | + | ||
152 | + Location.fromJson(Map<String, dynamic> json) { | ||
153 | + lat = json['lat']; | ||
154 | + lng = json['lng']; | ||
155 | + } | ||
156 | + | ||
157 | + Map<String, dynamic> toJson() { | ||
158 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
159 | + data['lat'] = this.lat; | ||
160 | + data['lng'] = this.lng; | ||
161 | + return data; | ||
162 | + } | ||
163 | +} | ||
164 | + | ||
165 | +class Viewport { | ||
166 | + Location? northeast; | ||
167 | + Location? southwest; | ||
168 | + | ||
169 | + Viewport({this.northeast, this.southwest}); | ||
170 | + | ||
171 | + Viewport.fromJson(Map<String, dynamic> json) { | ||
172 | + northeast = | ||
173 | + json['northeast'] != null ? Location.fromJson(json['northeast']) : null; | ||
174 | + southwest = | ||
175 | + json['southwest'] != null ? Location.fromJson(json['southwest']) : null; | ||
176 | + } | ||
177 | + | ||
178 | + Map<String, dynamic> toJson() { | ||
179 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
180 | + if (this.northeast != null) { | ||
181 | + data['northeast'] = this.northeast!.toJson(); | ||
182 | + } | ||
183 | + if (this.southwest != null) { | ||
184 | + data['southwest'] = this.southwest!.toJson(); | ||
185 | + } | ||
186 | + return data; | ||
187 | + } | ||
188 | +} | ||
189 | + | ||
190 | +class Photos { | ||
191 | + int? height; | ||
192 | + List<String>? htmlAttributions; | ||
193 | + String? photoReference; | ||
194 | + int? width; | ||
195 | + | ||
196 | + Photos({this.height, this.htmlAttributions, this.photoReference, this.width}); | ||
197 | + | ||
198 | + Photos.fromJson(Map<String, dynamic> json) { | ||
199 | + height = json['height']; | ||
200 | + htmlAttributions = json['html_attributions'].cast<String>(); | ||
201 | + photoReference = json['photo_reference']; | ||
202 | + width = json['width']; | ||
203 | + } | ||
204 | + | ||
205 | + Map<String, dynamic> toJson() { | ||
206 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
207 | + data['height'] = this.height; | ||
208 | + data['html_attributions'] = this.htmlAttributions; | ||
209 | + data['photo_reference'] = this.photoReference; | ||
210 | + data['width'] = this.width; | ||
211 | + return data; | ||
212 | + } | ||
213 | +} | ||
214 | + | ||
215 | +class OpeningHours { | ||
216 | + bool? openNow; | ||
217 | + | ||
218 | + OpeningHours({this.openNow}); | ||
219 | + | ||
220 | + OpeningHours.fromJson(Map<String, dynamic> json) { | ||
221 | + openNow = json['open_now']; | ||
222 | + } | ||
223 | + | ||
224 | + Map<String, dynamic> toJson() { | ||
225 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
226 | + data['open_now'] = this.openNow; | ||
227 | + return data; | ||
228 | + } | ||
229 | +} | ||
230 | + | ||
231 | +class PlusCode { | ||
232 | + String? compoundCode; | ||
233 | + String? globalCode; | ||
234 | + | ||
235 | + PlusCode({this.compoundCode, this.globalCode}); | ||
236 | + | ||
237 | + PlusCode.fromJson(Map<String, dynamic> json) { | ||
238 | + compoundCode = json['compound_code']; | ||
239 | + globalCode = json['global_code']; | ||
240 | + } | ||
241 | + | ||
242 | + Map<String, dynamic> toJson() { | ||
243 | + final Map<String, dynamic> data = Map<String, dynamic>(); | ||
244 | + data['compound_code'] = this.compoundCode; | ||
245 | + data['global_code'] = this.globalCode; | ||
246 | + return data; | ||
247 | + } | ||
248 | +} |
1 | import 'dart:async'; | 1 | import 'dart:async'; |
2 | -import 'dart:math'; | 2 | +import 'dart:convert'; |
3 | - | 3 | +import 'package:Parlando/models/nearby_response.dart' as nearby; |
4 | -import 'package:location/location.dart'; | ||
5 | import 'package:flutter/material.dart'; | 4 | import 'package:flutter/material.dart'; |
6 | import 'package:Parlando/widgets/my_button.dart'; | 5 | import 'package:Parlando/widgets/my_button.dart'; |
7 | import 'package:Parlando/widgets/search_bar.dart'; | 6 | import 'package:Parlando/widgets/search_bar.dart'; |
8 | import 'package:getwidget/getwidget.dart'; | 7 | import 'package:getwidget/getwidget.dart'; |
9 | import 'package:google_maps_flutter/google_maps_flutter.dart'; | 8 | import 'package:google_maps_flutter/google_maps_flutter.dart'; |
10 | - | 9 | +import 'package:http/http.dart' as http; |
11 | -import '../../routers/fluro_navigator.dart'; | 10 | +import 'package:location/location.dart'; |
12 | -import '../../util/toast_utils.dart'; | ||
13 | 11 | ||
14 | class AddressSelectPage extends StatefulWidget { | 12 | class AddressSelectPage extends StatefulWidget { |
15 | const AddressSelectPage({Key? key}) : super(key: key); | 13 | const AddressSelectPage({Key? key}) : super(key: key); |
... | @@ -28,6 +26,10 @@ class AddressSelectPageState extends State<AddressSelectPage> { | ... | @@ -28,6 +26,10 @@ class AddressSelectPageState extends State<AddressSelectPage> { |
28 | int _markerIdCounter = 1; | 26 | int _markerIdCounter = 1; |
29 | Map<MarkerId, Marker> markers = <MarkerId, Marker>{}; | 27 | Map<MarkerId, Marker> markers = <MarkerId, Marker>{}; |
30 | late StreamSubscription _locationSubscription; | 28 | late StreamSubscription _locationSubscription; |
29 | + String radius = "30"; | ||
30 | + String apiKey = ""; | ||
31 | + nearby.NearbyPlacesResponse nearbyPlacesResponse = | ||
32 | + nearby.NearbyPlacesResponse(); | ||
31 | 33 | ||
32 | @override | 34 | @override |
33 | void dispose() { | 35 | void dispose() { |
... | @@ -44,7 +46,6 @@ class AddressSelectPageState extends State<AddressSelectPage> { | ... | @@ -44,7 +46,6 @@ class AddressSelectPageState extends State<AddressSelectPage> { |
44 | 46 | ||
45 | Future<void> _getCurrentLocation() async { | 47 | Future<void> _getCurrentLocation() async { |
46 | Location location = Location(); | 48 | Location location = Location(); |
47 | - | ||
48 | bool serviceEnabled; | 49 | bool serviceEnabled; |
49 | PermissionStatus permissionGranted; | 50 | PermissionStatus permissionGranted; |
50 | serviceEnabled = await location.serviceEnabled(); | 51 | serviceEnabled = await location.serviceEnabled(); |
... | @@ -68,6 +69,15 @@ class AddressSelectPageState extends State<AddressSelectPage> { | ... | @@ -68,6 +69,15 @@ class AddressSelectPageState extends State<AddressSelectPage> { |
68 | }); | 69 | }); |
69 | } | 70 | } |
70 | 71 | ||
72 | + void getNearbyPlaces() async { | ||
73 | + var url = Uri.parse( | ||
74 | + '${'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=${_center.latitude},${_center.longitude}&radius=$radius'}&key=$apiKey'); | ||
75 | + var response = await http.post(url); | ||
76 | + nearbyPlacesResponse = | ||
77 | + nearby.NearbyPlacesResponse.fromJson(jsonDecode(response.body)); | ||
78 | + setState(() {}); | ||
79 | + } | ||
80 | + | ||
71 | void _onMapCreated(GoogleMapController controller) { | 81 | void _onMapCreated(GoogleMapController controller) { |
72 | mapController = controller; | 82 | mapController = controller; |
73 | final String markerIdVal = 'marker_id_$_markerIdCounter'; | 83 | final String markerIdVal = 'marker_id_$_markerIdCounter'; | ... | ... |
... | @@ -5,16 +5,16 @@ packages: | ... | @@ -5,16 +5,16 @@ packages: |
5 | dependency: transitive | 5 | dependency: transitive |
6 | description: | 6 | description: |
7 | name: _fe_analyzer_shared | 7 | name: _fe_analyzer_shared |
8 | - url: "https://pub.dartlang.org" | 8 | + url: "https://pub.flutter-io.cn" |
9 | source: hosted | 9 | source: hosted |
10 | - version: "46.0.0" | 10 | + version: "47.0.0" |
11 | analyzer: | 11 | analyzer: |
12 | dependency: transitive | 12 | dependency: transitive |
13 | description: | 13 | description: |
14 | name: analyzer | 14 | name: analyzer |
15 | - url: "https://pub.dartlang.org" | 15 | + url: "https://pub.flutter-io.cn" |
16 | source: hosted | 16 | source: hosted |
17 | - version: "4.6.0" | 17 | + version: "4.7.0" |
18 | animated_radial_menu: | 18 | animated_radial_menu: |
19 | dependency: "direct main" | 19 | dependency: "direct main" |
20 | description: | 20 | description: |
... | @@ -26,357 +26,357 @@ packages: | ... | @@ -26,357 +26,357 @@ packages: |
26 | dependency: transitive | 26 | dependency: transitive |
27 | description: | 27 | description: |
28 | name: archive | 28 | name: archive |
29 | - url: "https://pub.dartlang.org" | 29 | + url: "https://pub.flutter-io.cn" |
30 | source: hosted | 30 | source: hosted |
31 | version: "3.3.0" | 31 | version: "3.3.0" |
32 | args: | 32 | args: |
33 | dependency: transitive | 33 | dependency: transitive |
34 | description: | 34 | description: |
35 | name: args | 35 | name: args |
36 | - url: "https://pub.dartlang.org" | 36 | + url: "https://pub.flutter-io.cn" |
37 | source: hosted | 37 | source: hosted |
38 | version: "2.3.1" | 38 | version: "2.3.1" |
39 | async: | 39 | async: |
40 | dependency: transitive | 40 | dependency: transitive |
41 | description: | 41 | description: |
42 | name: async | 42 | name: async |
43 | - url: "https://pub.dartlang.org" | 43 | + url: "https://pub.flutter-io.cn" |
44 | source: hosted | 44 | source: hosted |
45 | version: "2.9.0" | 45 | version: "2.9.0" |
46 | boolean_selector: | 46 | boolean_selector: |
47 | dependency: transitive | 47 | dependency: transitive |
48 | description: | 48 | description: |
49 | name: boolean_selector | 49 | name: boolean_selector |
50 | - url: "https://pub.dartlang.org" | 50 | + url: "https://pub.flutter-io.cn" |
51 | source: hosted | 51 | source: hosted |
52 | version: "2.1.0" | 52 | version: "2.1.0" |
53 | build: | 53 | build: |
54 | dependency: transitive | 54 | dependency: transitive |
55 | description: | 55 | description: |
56 | name: build | 56 | name: build |
57 | - url: "https://pub.dartlang.org" | 57 | + url: "https://pub.flutter-io.cn" |
58 | source: hosted | 58 | source: hosted |
59 | - version: "2.3.0" | 59 | + version: "2.3.1" |
60 | build_config: | 60 | build_config: |
61 | dependency: transitive | 61 | dependency: transitive |
62 | description: | 62 | description: |
63 | name: build_config | 63 | name: build_config |
64 | - url: "https://pub.dartlang.org" | 64 | + url: "https://pub.flutter-io.cn" |
65 | source: hosted | 65 | source: hosted |
66 | version: "1.1.0" | 66 | version: "1.1.0" |
67 | build_daemon: | 67 | build_daemon: |
68 | dependency: transitive | 68 | dependency: transitive |
69 | description: | 69 | description: |
70 | name: build_daemon | 70 | name: build_daemon |
71 | - url: "https://pub.dartlang.org" | 71 | + url: "https://pub.flutter-io.cn" |
72 | source: hosted | 72 | source: hosted |
73 | version: "3.1.0" | 73 | version: "3.1.0" |
74 | build_resolvers: | 74 | build_resolvers: |
75 | dependency: transitive | 75 | dependency: transitive |
76 | description: | 76 | description: |
77 | name: build_resolvers | 77 | name: build_resolvers |
78 | - url: "https://pub.dartlang.org" | 78 | + url: "https://pub.flutter-io.cn" |
79 | source: hosted | 79 | source: hosted |
80 | - version: "2.0.9" | 80 | + version: "2.0.10" |
81 | build_runner: | 81 | build_runner: |
82 | dependency: "direct dev" | 82 | dependency: "direct dev" |
83 | description: | 83 | description: |
84 | name: build_runner | 84 | name: build_runner |
85 | - url: "https://pub.dartlang.org" | 85 | + url: "https://pub.flutter-io.cn" |
86 | source: hosted | 86 | source: hosted |
87 | - version: "2.2.0" | 87 | + version: "2.2.1" |
88 | build_runner_core: | 88 | build_runner_core: |
89 | dependency: transitive | 89 | dependency: transitive |
90 | description: | 90 | description: |
91 | name: build_runner_core | 91 | name: build_runner_core |
92 | - url: "https://pub.dartlang.org" | 92 | + url: "https://pub.flutter-io.cn" |
93 | source: hosted | 93 | source: hosted |
94 | - version: "7.2.3" | 94 | + version: "7.2.4" |
95 | built_collection: | 95 | built_collection: |
96 | dependency: transitive | 96 | dependency: transitive |
97 | description: | 97 | description: |
98 | name: built_collection | 98 | name: built_collection |
99 | - url: "https://pub.dartlang.org" | 99 | + url: "https://pub.flutter-io.cn" |
100 | source: hosted | 100 | source: hosted |
101 | version: "5.1.1" | 101 | version: "5.1.1" |
102 | built_value: | 102 | built_value: |
103 | dependency: transitive | 103 | dependency: transitive |
104 | description: | 104 | description: |
105 | name: built_value | 105 | name: built_value |
106 | - url: "https://pub.dartlang.org" | 106 | + url: "https://pub.flutter-io.cn" |
107 | source: hosted | 107 | source: hosted |
108 | - version: "8.4.0" | 108 | + version: "8.4.1" |
109 | cached_network_image: | 109 | cached_network_image: |
110 | dependency: "direct main" | 110 | dependency: "direct main" |
111 | description: | 111 | description: |
112 | name: cached_network_image | 112 | name: cached_network_image |
113 | - url: "https://pub.dartlang.org" | 113 | + url: "https://pub.flutter-io.cn" |
114 | source: hosted | 114 | source: hosted |
115 | - version: "3.2.1" | 115 | + version: "3.2.2" |
116 | cached_network_image_platform_interface: | 116 | cached_network_image_platform_interface: |
117 | dependency: transitive | 117 | dependency: transitive |
118 | description: | 118 | description: |
119 | name: cached_network_image_platform_interface | 119 | name: cached_network_image_platform_interface |
120 | - url: "https://pub.dartlang.org" | 120 | + url: "https://pub.flutter-io.cn" |
121 | source: hosted | 121 | source: hosted |
122 | - version: "1.0.0" | 122 | + version: "2.0.0" |
123 | cached_network_image_web: | 123 | cached_network_image_web: |
124 | dependency: transitive | 124 | dependency: transitive |
125 | description: | 125 | description: |
126 | name: cached_network_image_web | 126 | name: cached_network_image_web |
127 | - url: "https://pub.dartlang.org" | 127 | + url: "https://pub.flutter-io.cn" |
128 | source: hosted | 128 | source: hosted |
129 | - version: "1.0.1" | 129 | + version: "1.0.2" |
130 | camera: | 130 | camera: |
131 | dependency: "direct main" | 131 | dependency: "direct main" |
132 | description: | 132 | description: |
133 | name: camera | 133 | name: camera |
134 | - url: "https://pub.dartlang.org" | 134 | + url: "https://pub.flutter-io.cn" |
135 | source: hosted | 135 | source: hosted |
136 | version: "0.9.8+1" | 136 | version: "0.9.8+1" |
137 | camera_android: | 137 | camera_android: |
138 | dependency: transitive | 138 | dependency: transitive |
139 | description: | 139 | description: |
140 | name: camera_android | 140 | name: camera_android |
141 | - url: "https://pub.dartlang.org" | 141 | + url: "https://pub.flutter-io.cn" |
142 | source: hosted | 142 | source: hosted |
143 | version: "0.9.8+3" | 143 | version: "0.9.8+3" |
144 | camera_avfoundation: | 144 | camera_avfoundation: |
145 | dependency: transitive | 145 | dependency: transitive |
146 | description: | 146 | description: |
147 | name: camera_avfoundation | 147 | name: camera_avfoundation |
148 | - url: "https://pub.dartlang.org" | 148 | + url: "https://pub.flutter-io.cn" |
149 | source: hosted | 149 | source: hosted |
150 | - version: "0.9.8+3" | 150 | + version: "0.9.8+6" |
151 | camera_platform_interface: | 151 | camera_platform_interface: |
152 | dependency: transitive | 152 | dependency: transitive |
153 | description: | 153 | description: |
154 | name: camera_platform_interface | 154 | name: camera_platform_interface |
155 | - url: "https://pub.dartlang.org" | 155 | + url: "https://pub.flutter-io.cn" |
156 | source: hosted | 156 | source: hosted |
157 | - version: "2.2.0" | 157 | + version: "2.2.2" |
158 | camera_web: | 158 | camera_web: |
159 | dependency: transitive | 159 | dependency: transitive |
160 | description: | 160 | description: |
161 | name: camera_web | 161 | name: camera_web |
162 | - url: "https://pub.dartlang.org" | 162 | + url: "https://pub.flutter-io.cn" |
163 | source: hosted | 163 | source: hosted |
164 | version: "0.2.1+6" | 164 | version: "0.2.1+6" |
165 | characters: | 165 | characters: |
166 | dependency: transitive | 166 | dependency: transitive |
167 | description: | 167 | description: |
168 | name: characters | 168 | name: characters |
169 | - url: "https://pub.dartlang.org" | 169 | + url: "https://pub.flutter-io.cn" |
170 | source: hosted | 170 | source: hosted |
171 | version: "1.2.1" | 171 | version: "1.2.1" |
172 | checked_yaml: | 172 | checked_yaml: |
173 | dependency: transitive | 173 | dependency: transitive |
174 | description: | 174 | description: |
175 | name: checked_yaml | 175 | name: checked_yaml |
176 | - url: "https://pub.dartlang.org" | 176 | + url: "https://pub.flutter-io.cn" |
177 | source: hosted | 177 | source: hosted |
178 | version: "2.0.1" | 178 | version: "2.0.1" |
179 | chewie: | 179 | chewie: |
180 | dependency: "direct main" | 180 | dependency: "direct main" |
181 | description: | 181 | description: |
182 | name: chewie | 182 | name: chewie |
183 | - url: "https://pub.dartlang.org" | 183 | + url: "https://pub.flutter-io.cn" |
184 | source: hosted | 184 | source: hosted |
185 | - version: "1.3.4" | 185 | + version: "1.3.5" |
186 | clock: | 186 | clock: |
187 | dependency: transitive | 187 | dependency: transitive |
188 | description: | 188 | description: |
189 | name: clock | 189 | name: clock |
190 | - url: "https://pub.dartlang.org" | 190 | + url: "https://pub.flutter-io.cn" |
191 | source: hosted | 191 | source: hosted |
192 | version: "1.1.1" | 192 | version: "1.1.1" |
193 | code_builder: | 193 | code_builder: |
194 | dependency: transitive | 194 | dependency: transitive |
195 | description: | 195 | description: |
196 | name: code_builder | 196 | name: code_builder |
197 | - url: "https://pub.dartlang.org" | 197 | + url: "https://pub.flutter-io.cn" |
198 | source: hosted | 198 | source: hosted |
199 | - version: "4.2.0" | 199 | + version: "4.3.0" |
200 | collection: | 200 | collection: |
201 | dependency: transitive | 201 | dependency: transitive |
202 | description: | 202 | description: |
203 | name: collection | 203 | name: collection |
204 | - url: "https://pub.dartlang.org" | 204 | + url: "https://pub.flutter-io.cn" |
205 | source: hosted | 205 | source: hosted |
206 | version: "1.16.0" | 206 | version: "1.16.0" |
207 | common_utils: | 207 | common_utils: |
208 | dependency: "direct main" | 208 | dependency: "direct main" |
209 | description: | 209 | description: |
210 | name: common_utils | 210 | name: common_utils |
211 | - url: "https://pub.dartlang.org" | 211 | + url: "https://pub.flutter-io.cn" |
212 | source: hosted | 212 | source: hosted |
213 | version: "2.0.2" | 213 | version: "2.0.2" |
214 | convert: | 214 | convert: |
215 | dependency: transitive | 215 | dependency: transitive |
216 | description: | 216 | description: |
217 | name: convert | 217 | name: convert |
218 | - url: "https://pub.dartlang.org" | 218 | + url: "https://pub.flutter-io.cn" |
219 | source: hosted | 219 | source: hosted |
220 | version: "3.0.2" | 220 | version: "3.0.2" |
221 | coverage: | 221 | coverage: |
222 | dependency: transitive | 222 | dependency: transitive |
223 | description: | 223 | description: |
224 | name: coverage | 224 | name: coverage |
225 | - url: "https://pub.dartlang.org" | 225 | + url: "https://pub.flutter-io.cn" |
226 | source: hosted | 226 | source: hosted |
227 | version: "1.5.0" | 227 | version: "1.5.0" |
228 | cross_file: | 228 | cross_file: |
229 | dependency: transitive | 229 | dependency: transitive |
230 | description: | 230 | description: |
231 | name: cross_file | 231 | name: cross_file |
232 | - url: "https://pub.dartlang.org" | 232 | + url: "https://pub.flutter-io.cn" |
233 | source: hosted | 233 | source: hosted |
234 | - version: "0.3.3+1" | 234 | + version: "0.3.3+2" |
235 | crypto: | 235 | crypto: |
236 | dependency: transitive | 236 | dependency: transitive |
237 | description: | 237 | description: |
238 | name: crypto | 238 | name: crypto |
239 | - url: "https://pub.dartlang.org" | 239 | + url: "https://pub.flutter-io.cn" |
240 | source: hosted | 240 | source: hosted |
241 | version: "3.0.2" | 241 | version: "3.0.2" |
242 | csslib: | 242 | csslib: |
243 | dependency: transitive | 243 | dependency: transitive |
244 | description: | 244 | description: |
245 | name: csslib | 245 | name: csslib |
246 | - url: "https://pub.dartlang.org" | 246 | + url: "https://pub.flutter-io.cn" |
247 | source: hosted | 247 | source: hosted |
248 | version: "0.17.2" | 248 | version: "0.17.2" |
249 | cupertino_icons: | 249 | cupertino_icons: |
250 | dependency: "direct main" | 250 | dependency: "direct main" |
251 | description: | 251 | description: |
252 | name: cupertino_icons | 252 | name: cupertino_icons |
253 | - url: "https://pub.dartlang.org" | 253 | + url: "https://pub.flutter-io.cn" |
254 | source: hosted | 254 | source: hosted |
255 | version: "1.0.5" | 255 | version: "1.0.5" |
256 | dart_style: | 256 | dart_style: |
257 | dependency: transitive | 257 | dependency: transitive |
258 | description: | 258 | description: |
259 | name: dart_style | 259 | name: dart_style |
260 | - url: "https://pub.dartlang.org" | 260 | + url: "https://pub.flutter-io.cn" |
261 | source: hosted | 261 | source: hosted |
262 | - version: "2.2.3" | 262 | + version: "2.2.4" |
263 | decimal: | 263 | decimal: |
264 | dependency: "direct overridden" | 264 | dependency: "direct overridden" |
265 | description: | 265 | description: |
266 | name: decimal | 266 | name: decimal |
267 | - url: "https://pub.dartlang.org" | 267 | + url: "https://pub.flutter-io.cn" |
268 | source: hosted | 268 | source: hosted |
269 | version: "1.5.0" | 269 | version: "1.5.0" |
270 | device_info_plus: | 270 | device_info_plus: |
271 | dependency: "direct main" | 271 | dependency: "direct main" |
272 | description: | 272 | description: |
273 | name: device_info_plus | 273 | name: device_info_plus |
274 | - url: "https://pub.dartlang.org" | 274 | + url: "https://pub.flutter-io.cn" |
275 | source: hosted | 275 | source: hosted |
276 | version: "3.2.4" | 276 | version: "3.2.4" |
277 | device_info_plus_linux: | 277 | device_info_plus_linux: |
278 | dependency: transitive | 278 | dependency: transitive |
279 | description: | 279 | description: |
280 | name: device_info_plus_linux | 280 | name: device_info_plus_linux |
281 | - url: "https://pub.dartlang.org" | 281 | + url: "https://pub.flutter-io.cn" |
282 | source: hosted | 282 | source: hosted |
283 | version: "2.1.1" | 283 | version: "2.1.1" |
284 | device_info_plus_macos: | 284 | device_info_plus_macos: |
285 | dependency: transitive | 285 | dependency: transitive |
286 | description: | 286 | description: |
287 | name: device_info_plus_macos | 287 | name: device_info_plus_macos |
288 | - url: "https://pub.dartlang.org" | 288 | + url: "https://pub.flutter-io.cn" |
289 | source: hosted | 289 | source: hosted |
290 | version: "2.2.3" | 290 | version: "2.2.3" |
291 | device_info_plus_platform_interface: | 291 | device_info_plus_platform_interface: |
292 | dependency: transitive | 292 | dependency: transitive |
293 | description: | 293 | description: |
294 | name: device_info_plus_platform_interface | 294 | name: device_info_plus_platform_interface |
295 | - url: "https://pub.dartlang.org" | 295 | + url: "https://pub.flutter-io.cn" |
296 | source: hosted | 296 | source: hosted |
297 | - version: "2.6.0" | 297 | + version: "2.6.1" |
298 | device_info_plus_web: | 298 | device_info_plus_web: |
299 | dependency: transitive | 299 | dependency: transitive |
300 | description: | 300 | description: |
301 | name: device_info_plus_web | 301 | name: device_info_plus_web |
302 | - url: "https://pub.dartlang.org" | 302 | + url: "https://pub.flutter-io.cn" |
303 | source: hosted | 303 | source: hosted |
304 | version: "2.1.0" | 304 | version: "2.1.0" |
305 | device_info_plus_windows: | 305 | device_info_plus_windows: |
306 | dependency: transitive | 306 | dependency: transitive |
307 | description: | 307 | description: |
308 | name: device_info_plus_windows | 308 | name: device_info_plus_windows |
309 | - url: "https://pub.dartlang.org" | 309 | + url: "https://pub.flutter-io.cn" |
310 | source: hosted | 310 | source: hosted |
311 | version: "2.1.1" | 311 | version: "2.1.1" |
312 | dio: | 312 | dio: |
313 | dependency: "direct main" | 313 | dependency: "direct main" |
314 | description: | 314 | description: |
315 | name: dio | 315 | name: dio |
316 | - url: "https://pub.dartlang.org" | 316 | + url: "https://pub.flutter-io.cn" |
317 | source: hosted | 317 | source: hosted |
318 | version: "4.0.6" | 318 | version: "4.0.6" |
319 | email_validator: | 319 | email_validator: |
320 | dependency: "direct main" | 320 | dependency: "direct main" |
321 | description: | 321 | description: |
322 | name: email_validator | 322 | name: email_validator |
323 | - url: "https://pub.dartlang.org" | 323 | + url: "https://pub.flutter-io.cn" |
324 | source: hosted | 324 | source: hosted |
325 | version: "2.1.17" | 325 | version: "2.1.17" |
326 | event_bus: | 326 | event_bus: |
327 | dependency: "direct main" | 327 | dependency: "direct main" |
328 | description: | 328 | description: |
329 | name: event_bus | 329 | name: event_bus |
330 | - url: "https://pub.dartlang.org" | 330 | + url: "https://pub.flutter-io.cn" |
331 | source: hosted | 331 | source: hosted |
332 | version: "2.0.0" | 332 | version: "2.0.0" |
333 | fake_async: | 333 | fake_async: |
334 | dependency: transitive | 334 | dependency: transitive |
335 | description: | 335 | description: |
336 | name: fake_async | 336 | name: fake_async |
337 | - url: "https://pub.dartlang.org" | 337 | + url: "https://pub.flutter-io.cn" |
338 | source: hosted | 338 | source: hosted |
339 | version: "1.3.1" | 339 | version: "1.3.1" |
340 | ffi: | 340 | ffi: |
341 | dependency: transitive | 341 | dependency: transitive |
342 | description: | 342 | description: |
343 | name: ffi | 343 | name: ffi |
344 | - url: "https://pub.dartlang.org" | 344 | + url: "https://pub.flutter-io.cn" |
345 | source: hosted | 345 | source: hosted |
346 | version: "1.2.1" | 346 | version: "1.2.1" |
347 | fijkplayer: | 347 | fijkplayer: |
348 | dependency: "direct main" | 348 | dependency: "direct main" |
349 | description: | 349 | description: |
350 | name: fijkplayer | 350 | name: fijkplayer |
351 | - url: "https://pub.dartlang.org" | 351 | + url: "https://pub.flutter-io.cn" |
352 | source: hosted | 352 | source: hosted |
353 | version: "0.10.1" | 353 | version: "0.10.1" |
354 | file: | 354 | file: |
355 | dependency: transitive | 355 | dependency: transitive |
356 | description: | 356 | description: |
357 | name: file | 357 | name: file |
358 | - url: "https://pub.dartlang.org" | 358 | + url: "https://pub.flutter-io.cn" |
359 | source: hosted | 359 | source: hosted |
360 | version: "6.1.2" | 360 | version: "6.1.2" |
361 | fixnum: | 361 | fixnum: |
362 | dependency: transitive | 362 | dependency: transitive |
363 | description: | 363 | description: |
364 | name: fixnum | 364 | name: fixnum |
365 | - url: "https://pub.dartlang.org" | 365 | + url: "https://pub.flutter-io.cn" |
366 | source: hosted | 366 | source: hosted |
367 | version: "1.0.1" | 367 | version: "1.0.1" |
368 | fluro: | 368 | fluro: |
369 | dependency: "direct main" | 369 | dependency: "direct main" |
370 | description: | 370 | description: |
371 | name: fluro | 371 | name: fluro |
372 | - url: "https://pub.dartlang.org" | 372 | + url: "https://pub.flutter-io.cn" |
373 | source: hosted | 373 | source: hosted |
374 | version: "2.0.3" | 374 | version: "2.0.3" |
375 | flustars: | 375 | flustars: |
376 | dependency: "direct main" | 376 | dependency: "direct main" |
377 | description: | 377 | description: |
378 | name: flustars | 378 | name: flustars |
379 | - url: "https://pub.dartlang.org" | 379 | + url: "https://pub.flutter-io.cn" |
380 | source: hosted | 380 | source: hosted |
381 | version: "2.0.1" | 381 | version: "2.0.1" |
382 | flutter: | 382 | flutter: |
... | @@ -388,14 +388,14 @@ packages: | ... | @@ -388,14 +388,14 @@ packages: |
388 | dependency: transitive | 388 | dependency: transitive |
389 | description: | 389 | description: |
390 | name: flutter_blurhash | 390 | name: flutter_blurhash |
391 | - url: "https://pub.dartlang.org" | 391 | + url: "https://pub.flutter-io.cn" |
392 | source: hosted | 392 | source: hosted |
393 | version: "0.7.0" | 393 | version: "0.7.0" |
394 | flutter_cache_manager: | 394 | flutter_cache_manager: |
395 | dependency: transitive | 395 | dependency: transitive |
396 | description: | 396 | description: |
397 | name: flutter_cache_manager | 397 | name: flutter_cache_manager |
398 | - url: "https://pub.dartlang.org" | 398 | + url: "https://pub.flutter-io.cn" |
399 | source: hosted | 399 | source: hosted |
400 | version: "3.3.0" | 400 | version: "3.3.0" |
401 | flutter_driver: | 401 | flutter_driver: |
... | @@ -407,49 +407,49 @@ packages: | ... | @@ -407,49 +407,49 @@ packages: |
407 | dependency: "direct main" | 407 | dependency: "direct main" |
408 | description: | 408 | description: |
409 | name: flutter_easy_permission | 409 | name: flutter_easy_permission |
410 | - url: "https://pub.dartlang.org" | 410 | + url: "https://pub.flutter-io.cn" |
411 | source: hosted | 411 | source: hosted |
412 | version: "1.1.2" | 412 | version: "1.1.2" |
413 | flutter_facebook_auth: | 413 | flutter_facebook_auth: |
414 | dependency: "direct main" | 414 | dependency: "direct main" |
415 | description: | 415 | description: |
416 | name: flutter_facebook_auth | 416 | name: flutter_facebook_auth |
417 | - url: "https://pub.dartlang.org" | 417 | + url: "https://pub.flutter-io.cn" |
418 | source: hosted | 418 | source: hosted |
419 | - version: "4.4.1" | 419 | + version: "4.4.1+1" |
420 | flutter_facebook_auth_platform_interface: | 420 | flutter_facebook_auth_platform_interface: |
421 | dependency: transitive | 421 | dependency: transitive |
422 | description: | 422 | description: |
423 | name: flutter_facebook_auth_platform_interface | 423 | name: flutter_facebook_auth_platform_interface |
424 | - url: "https://pub.dartlang.org" | 424 | + url: "https://pub.flutter-io.cn" |
425 | source: hosted | 425 | source: hosted |
426 | version: "3.2.0" | 426 | version: "3.2.0" |
427 | flutter_facebook_auth_web: | 427 | flutter_facebook_auth_web: |
428 | dependency: transitive | 428 | dependency: transitive |
429 | description: | 429 | description: |
430 | name: flutter_facebook_auth_web | 430 | name: flutter_facebook_auth_web |
431 | - url: "https://pub.dartlang.org" | 431 | + url: "https://pub.flutter-io.cn" |
432 | source: hosted | 432 | source: hosted |
433 | version: "3.2.0" | 433 | version: "3.2.0" |
434 | flutter_inapp_purchase: | 434 | flutter_inapp_purchase: |
435 | dependency: "direct main" | 435 | dependency: "direct main" |
436 | description: | 436 | description: |
437 | name: flutter_inapp_purchase | 437 | name: flutter_inapp_purchase |
438 | - url: "https://pub.dartlang.org" | 438 | + url: "https://pub.flutter-io.cn" |
439 | source: hosted | 439 | source: hosted |
440 | version: "5.3.1" | 440 | version: "5.3.1" |
441 | flutter_launcher_icons: | 441 | flutter_launcher_icons: |
442 | dependency: "direct dev" | 442 | dependency: "direct dev" |
443 | description: | 443 | description: |
444 | name: flutter_launcher_icons | 444 | name: flutter_launcher_icons |
445 | - url: "https://pub.dartlang.org" | 445 | + url: "https://pub.flutter-io.cn" |
446 | source: hosted | 446 | source: hosted |
447 | version: "0.9.3" | 447 | version: "0.9.3" |
448 | flutter_lints: | 448 | flutter_lints: |
449 | dependency: "direct dev" | 449 | dependency: "direct dev" |
450 | description: | 450 | description: |
451 | name: flutter_lints | 451 | name: flutter_lints |
452 | - url: "https://pub.dartlang.org" | 452 | + url: "https://pub.flutter-io.cn" |
453 | source: hosted | 453 | source: hosted |
454 | version: "2.0.1" | 454 | version: "2.0.1" |
455 | flutter_localizations: | 455 | flutter_localizations: |
... | @@ -461,63 +461,63 @@ packages: | ... | @@ -461,63 +461,63 @@ packages: |
461 | dependency: "direct dev" | 461 | dependency: "direct dev" |
462 | description: | 462 | description: |
463 | name: flutter_native_splash | 463 | name: flutter_native_splash |
464 | - url: "https://pub.dartlang.org" | 464 | + url: "https://pub.flutter-io.cn" |
465 | source: hosted | 465 | source: hosted |
466 | - version: "2.2.7" | 466 | + version: "2.2.10+1" |
467 | flutter_plugin_android_lifecycle: | 467 | flutter_plugin_android_lifecycle: |
468 | dependency: transitive | 468 | dependency: transitive |
469 | description: | 469 | description: |
470 | name: flutter_plugin_android_lifecycle | 470 | name: flutter_plugin_android_lifecycle |
471 | - url: "https://pub.dartlang.org" | 471 | + url: "https://pub.flutter-io.cn" |
472 | source: hosted | 472 | source: hosted |
473 | version: "2.0.7" | 473 | version: "2.0.7" |
474 | flutter_signin_button: | 474 | flutter_signin_button: |
475 | dependency: "direct main" | 475 | dependency: "direct main" |
476 | description: | 476 | description: |
477 | name: flutter_signin_button | 477 | name: flutter_signin_button |
478 | - url: "https://pub.dartlang.org" | 478 | + url: "https://pub.flutter-io.cn" |
479 | source: hosted | 479 | source: hosted |
480 | version: "2.0.0" | 480 | version: "2.0.0" |
481 | flutter_slidable: | 481 | flutter_slidable: |
482 | dependency: "direct main" | 482 | dependency: "direct main" |
483 | description: | 483 | description: |
484 | name: flutter_slidable | 484 | name: flutter_slidable |
485 | - url: "https://pub.dartlang.org" | 485 | + url: "https://pub.flutter-io.cn" |
486 | source: hosted | 486 | source: hosted |
487 | version: "1.3.2" | 487 | version: "1.3.2" |
488 | flutter_sound: | 488 | flutter_sound: |
489 | dependency: "direct main" | 489 | dependency: "direct main" |
490 | description: | 490 | description: |
491 | name: flutter_sound | 491 | name: flutter_sound |
492 | - url: "https://pub.dartlang.org" | 492 | + url: "https://pub.flutter-io.cn" |
493 | source: hosted | 493 | source: hosted |
494 | version: "9.2.13" | 494 | version: "9.2.13" |
495 | flutter_sound_platform_interface: | 495 | flutter_sound_platform_interface: |
496 | dependency: transitive | 496 | dependency: transitive |
497 | description: | 497 | description: |
498 | name: flutter_sound_platform_interface | 498 | name: flutter_sound_platform_interface |
499 | - url: "https://pub.dartlang.org" | 499 | + url: "https://pub.flutter-io.cn" |
500 | source: hosted | 500 | source: hosted |
501 | version: "9.2.13" | 501 | version: "9.2.13" |
502 | flutter_sound_web: | 502 | flutter_sound_web: |
503 | dependency: transitive | 503 | dependency: transitive |
504 | description: | 504 | description: |
505 | name: flutter_sound_web | 505 | name: flutter_sound_web |
506 | - url: "https://pub.dartlang.org" | 506 | + url: "https://pub.flutter-io.cn" |
507 | source: hosted | 507 | source: hosted |
508 | version: "9.2.13" | 508 | version: "9.2.13" |
509 | flutter_spinkit: | 509 | flutter_spinkit: |
510 | dependency: "direct main" | 510 | dependency: "direct main" |
511 | description: | 511 | description: |
512 | name: flutter_spinkit | 512 | name: flutter_spinkit |
513 | - url: "https://pub.dartlang.org" | 513 | + url: "https://pub.flutter-io.cn" |
514 | source: hosted | 514 | source: hosted |
515 | version: "5.1.0" | 515 | version: "5.1.0" |
516 | flutter_swiper_null_safety: | 516 | flutter_swiper_null_safety: |
517 | dependency: "direct main" | 517 | dependency: "direct main" |
518 | description: | 518 | description: |
519 | name: flutter_swiper_null_safety | 519 | name: flutter_swiper_null_safety |
520 | - url: "https://pub.dartlang.org" | 520 | + url: "https://pub.flutter-io.cn" |
521 | source: hosted | 521 | source: hosted |
522 | version: "1.0.2" | 522 | version: "1.0.2" |
523 | flutter_test: | 523 | flutter_test: |
... | @@ -534,14 +534,14 @@ packages: | ... | @@ -534,14 +534,14 @@ packages: |
534 | dependency: transitive | 534 | dependency: transitive |
535 | description: | 535 | description: |
536 | name: font_awesome_flutter | 536 | name: font_awesome_flutter |
537 | - url: "https://pub.dartlang.org" | 537 | + url: "https://pub.flutter-io.cn" |
538 | source: hosted | 538 | source: hosted |
539 | version: "9.2.0" | 539 | version: "9.2.0" |
540 | frontend_server_client: | 540 | frontend_server_client: |
541 | dependency: transitive | 541 | dependency: transitive |
542 | description: | 542 | description: |
543 | name: frontend_server_client | 543 | name: frontend_server_client |
544 | - url: "https://pub.dartlang.org" | 544 | + url: "https://pub.flutter-io.cn" |
545 | source: hosted | 545 | source: hosted |
546 | version: "2.1.3" | 546 | version: "2.1.3" |
547 | fuchsia_remote_debug_protocol: | 547 | fuchsia_remote_debug_protocol: |
... | @@ -553,142 +553,156 @@ packages: | ... | @@ -553,142 +553,156 @@ packages: |
553 | dependency: "direct main" | 553 | dependency: "direct main" |
554 | description: | 554 | description: |
555 | name: getwidget | 555 | name: getwidget |
556 | - url: "https://pub.dartlang.org" | 556 | + url: "https://pub.flutter-io.cn" |
557 | source: hosted | 557 | source: hosted |
558 | version: "2.1.1" | 558 | version: "2.1.1" |
559 | glob: | 559 | glob: |
560 | dependency: transitive | 560 | dependency: transitive |
561 | description: | 561 | description: |
562 | name: glob | 562 | name: glob |
563 | - url: "https://pub.dartlang.org" | 563 | + url: "https://pub.flutter-io.cn" |
564 | source: hosted | 564 | source: hosted |
565 | version: "2.1.0" | 565 | version: "2.1.0" |
566 | google_fonts: | 566 | google_fonts: |
567 | dependency: "direct main" | 567 | dependency: "direct main" |
568 | description: | 568 | description: |
569 | name: google_fonts | 569 | name: google_fonts |
570 | - url: "https://pub.dartlang.org" | 570 | + url: "https://pub.flutter-io.cn" |
571 | source: hosted | 571 | source: hosted |
572 | version: "3.0.1" | 572 | version: "3.0.1" |
573 | google_maps_flutter: | 573 | google_maps_flutter: |
574 | dependency: "direct main" | 574 | dependency: "direct main" |
575 | description: | 575 | description: |
576 | name: google_maps_flutter | 576 | name: google_maps_flutter |
577 | - url: "https://pub.dartlang.org" | 577 | + url: "https://pub.flutter-io.cn" |
578 | source: hosted | 578 | source: hosted |
579 | - version: "2.1.10" | 579 | + version: "2.2.1" |
580 | + google_maps_flutter_android: | ||
581 | + dependency: transitive | ||
582 | + description: | ||
583 | + name: google_maps_flutter_android | ||
584 | + url: "https://pub.flutter-io.cn" | ||
585 | + source: hosted | ||
586 | + version: "2.3.2" | ||
587 | + google_maps_flutter_ios: | ||
588 | + dependency: transitive | ||
589 | + description: | ||
590 | + name: google_maps_flutter_ios | ||
591 | + url: "https://pub.flutter-io.cn" | ||
592 | + source: hosted | ||
593 | + version: "2.1.12" | ||
580 | google_maps_flutter_platform_interface: | 594 | google_maps_flutter_platform_interface: |
581 | dependency: transitive | 595 | dependency: transitive |
582 | description: | 596 | description: |
583 | name: google_maps_flutter_platform_interface | 597 | name: google_maps_flutter_platform_interface |
584 | - url: "https://pub.dartlang.org" | 598 | + url: "https://pub.flutter-io.cn" |
585 | source: hosted | 599 | source: hosted |
586 | - version: "2.2.2" | 600 | + version: "2.2.4" |
587 | graphs: | 601 | graphs: |
588 | dependency: transitive | 602 | dependency: transitive |
589 | description: | 603 | description: |
590 | name: graphs | 604 | name: graphs |
591 | - url: "https://pub.dartlang.org" | 605 | + url: "https://pub.flutter-io.cn" |
592 | source: hosted | 606 | source: hosted |
593 | version: "2.1.0" | 607 | version: "2.1.0" |
594 | html: | 608 | html: |
595 | dependency: transitive | 609 | dependency: transitive |
596 | description: | 610 | description: |
597 | name: html | 611 | name: html |
598 | - url: "https://pub.dartlang.org" | 612 | + url: "https://pub.flutter-io.cn" |
599 | source: hosted | 613 | source: hosted |
600 | version: "0.15.0" | 614 | version: "0.15.0" |
601 | http: | 615 | http: |
602 | - dependency: transitive | 616 | + dependency: "direct main" |
603 | description: | 617 | description: |
604 | name: http | 618 | name: http |
605 | - url: "https://pub.dartlang.org" | 619 | + url: "https://pub.flutter-io.cn" |
606 | source: hosted | 620 | source: hosted |
607 | version: "0.13.5" | 621 | version: "0.13.5" |
608 | http_multi_server: | 622 | http_multi_server: |
609 | dependency: transitive | 623 | dependency: transitive |
610 | description: | 624 | description: |
611 | name: http_multi_server | 625 | name: http_multi_server |
612 | - url: "https://pub.dartlang.org" | 626 | + url: "https://pub.flutter-io.cn" |
613 | source: hosted | 627 | source: hosted |
614 | version: "3.2.1" | 628 | version: "3.2.1" |
615 | http_parser: | 629 | http_parser: |
616 | dependency: transitive | 630 | dependency: transitive |
617 | description: | 631 | description: |
618 | name: http_parser | 632 | name: http_parser |
619 | - url: "https://pub.dartlang.org" | 633 | + url: "https://pub.flutter-io.cn" |
620 | source: hosted | 634 | source: hosted |
621 | version: "4.0.1" | 635 | version: "4.0.1" |
622 | image: | 636 | image: |
623 | dependency: transitive | 637 | dependency: transitive |
624 | description: | 638 | description: |
625 | name: image | 639 | name: image |
626 | - url: "https://pub.dartlang.org" | 640 | + url: "https://pub.flutter-io.cn" |
627 | source: hosted | 641 | source: hosted |
628 | version: "3.2.0" | 642 | version: "3.2.0" |
629 | image_cropper: | 643 | image_cropper: |
630 | dependency: "direct main" | 644 | dependency: "direct main" |
631 | description: | 645 | description: |
632 | name: image_cropper | 646 | name: image_cropper |
633 | - url: "https://pub.dartlang.org" | 647 | + url: "https://pub.flutter-io.cn" |
634 | source: hosted | 648 | source: hosted |
635 | version: "2.0.3" | 649 | version: "2.0.3" |
636 | image_cropper_for_web: | 650 | image_cropper_for_web: |
637 | dependency: transitive | 651 | dependency: transitive |
638 | description: | 652 | description: |
639 | name: image_cropper_for_web | 653 | name: image_cropper_for_web |
640 | - url: "https://pub.dartlang.org" | 654 | + url: "https://pub.flutter-io.cn" |
641 | source: hosted | 655 | source: hosted |
642 | version: "0.0.4" | 656 | version: "0.0.4" |
643 | image_cropper_platform_interface: | 657 | image_cropper_platform_interface: |
644 | dependency: transitive | 658 | dependency: transitive |
645 | description: | 659 | description: |
646 | name: image_cropper_platform_interface | 660 | name: image_cropper_platform_interface |
647 | - url: "https://pub.dartlang.org" | 661 | + url: "https://pub.flutter-io.cn" |
648 | source: hosted | 662 | source: hosted |
649 | version: "2.0.0" | 663 | version: "2.0.0" |
650 | image_gallery_saver: | 664 | image_gallery_saver: |
651 | dependency: "direct main" | 665 | dependency: "direct main" |
652 | description: | 666 | description: |
653 | name: image_gallery_saver | 667 | name: image_gallery_saver |
654 | - url: "https://pub.dartlang.org" | 668 | + url: "https://pub.flutter-io.cn" |
655 | source: hosted | 669 | source: hosted |
656 | version: "1.7.1" | 670 | version: "1.7.1" |
657 | image_picker: | 671 | image_picker: |
658 | dependency: "direct main" | 672 | dependency: "direct main" |
659 | description: | 673 | description: |
660 | name: image_picker | 674 | name: image_picker |
661 | - url: "https://pub.dartlang.org" | 675 | + url: "https://pub.flutter-io.cn" |
662 | source: hosted | 676 | source: hosted |
663 | - version: "0.8.5+3" | 677 | + version: "0.8.6" |
664 | image_picker_android: | 678 | image_picker_android: |
665 | dependency: transitive | 679 | dependency: transitive |
666 | description: | 680 | description: |
667 | name: image_picker_android | 681 | name: image_picker_android |
668 | - url: "https://pub.dartlang.org" | 682 | + url: "https://pub.flutter-io.cn" |
669 | source: hosted | 683 | source: hosted |
670 | - version: "0.8.5+2" | 684 | + version: "0.8.5+3" |
671 | image_picker_for_web: | 685 | image_picker_for_web: |
672 | dependency: transitive | 686 | dependency: transitive |
673 | description: | 687 | description: |
674 | name: image_picker_for_web | 688 | name: image_picker_for_web |
675 | - url: "https://pub.dartlang.org" | 689 | + url: "https://pub.flutter-io.cn" |
676 | source: hosted | 690 | source: hosted |
677 | - version: "2.1.8" | 691 | + version: "2.1.10" |
678 | image_picker_ios: | 692 | image_picker_ios: |
679 | dependency: transitive | 693 | dependency: transitive |
680 | description: | 694 | description: |
681 | name: image_picker_ios | 695 | name: image_picker_ios |
682 | - url: "https://pub.dartlang.org" | 696 | + url: "https://pub.flutter-io.cn" |
683 | source: hosted | 697 | source: hosted |
684 | - version: "0.8.5+6" | 698 | + version: "0.8.6+1" |
685 | image_picker_platform_interface: | 699 | image_picker_platform_interface: |
686 | dependency: transitive | 700 | dependency: transitive |
687 | description: | 701 | description: |
688 | name: image_picker_platform_interface | 702 | name: image_picker_platform_interface |
689 | - url: "https://pub.dartlang.org" | 703 | + url: "https://pub.flutter-io.cn" |
690 | source: hosted | 704 | source: hosted |
691 | - version: "2.6.1" | 705 | + version: "2.6.2" |
692 | integration_test: | 706 | integration_test: |
693 | dependency: "direct dev" | 707 | dependency: "direct dev" |
694 | description: flutter | 708 | description: flutter |
... | @@ -698,532 +712,525 @@ packages: | ... | @@ -698,532 +712,525 @@ packages: |
698 | dependency: "direct main" | 712 | dependency: "direct main" |
699 | description: | 713 | description: |
700 | name: intl | 714 | name: intl |
701 | - url: "https://pub.dartlang.org" | 715 | + url: "https://pub.flutter-io.cn" |
702 | source: hosted | 716 | source: hosted |
703 | version: "0.17.0" | 717 | version: "0.17.0" |
704 | io: | 718 | io: |
705 | dependency: transitive | 719 | dependency: transitive |
706 | description: | 720 | description: |
707 | name: io | 721 | name: io |
708 | - url: "https://pub.dartlang.org" | 722 | + url: "https://pub.flutter-io.cn" |
709 | source: hosted | 723 | source: hosted |
710 | version: "1.0.3" | 724 | version: "1.0.3" |
711 | jpush_flutter: | 725 | jpush_flutter: |
712 | dependency: "direct main" | 726 | dependency: "direct main" |
713 | description: | 727 | description: |
714 | name: jpush_flutter | 728 | name: jpush_flutter |
715 | - url: "https://pub.dartlang.org" | 729 | + url: "https://pub.flutter-io.cn" |
716 | source: hosted | 730 | source: hosted |
717 | - version: "2.3.5" | 731 | + version: "2.3.8" |
718 | js: | 732 | js: |
719 | dependency: transitive | 733 | dependency: transitive |
720 | description: | 734 | description: |
721 | name: js | 735 | name: js |
722 | - url: "https://pub.dartlang.org" | 736 | + url: "https://pub.flutter-io.cn" |
723 | source: hosted | 737 | source: hosted |
724 | version: "0.6.4" | 738 | version: "0.6.4" |
725 | json_annotation: | 739 | json_annotation: |
726 | dependency: "direct main" | 740 | dependency: "direct main" |
727 | description: | 741 | description: |
728 | name: json_annotation | 742 | name: json_annotation |
729 | - url: "https://pub.dartlang.org" | 743 | + url: "https://pub.flutter-io.cn" |
730 | source: hosted | 744 | source: hosted |
731 | - version: "4.6.0" | 745 | + version: "4.7.0" |
732 | json_serializable: | 746 | json_serializable: |
733 | dependency: "direct dev" | 747 | dependency: "direct dev" |
734 | description: | 748 | description: |
735 | name: json_serializable | 749 | name: json_serializable |
736 | - url: "https://pub.dartlang.org" | 750 | + url: "https://pub.flutter-io.cn" |
737 | source: hosted | 751 | source: hosted |
738 | - version: "6.3.1" | 752 | + version: "6.4.1" |
739 | keyboard_actions: | 753 | keyboard_actions: |
740 | dependency: "direct main" | 754 | dependency: "direct main" |
741 | description: | 755 | description: |
742 | name: keyboard_actions | 756 | name: keyboard_actions |
743 | - url: "https://pub.dartlang.org" | 757 | + url: "https://pub.flutter-io.cn" |
744 | - source: hosted | ||
745 | - version: "4.0.1" | ||
746 | - lint: | ||
747 | - dependency: transitive | ||
748 | - description: | ||
749 | - name: lint | ||
750 | - url: "https://pub.dartlang.org" | ||
751 | source: hosted | 758 | source: hosted |
752 | - version: "1.10.0" | 759 | + version: "4.1.0" |
753 | lints: | 760 | lints: |
754 | dependency: transitive | 761 | dependency: transitive |
755 | description: | 762 | description: |
756 | name: lints | 763 | name: lints |
757 | - url: "https://pub.dartlang.org" | 764 | + url: "https://pub.flutter-io.cn" |
758 | source: hosted | 765 | source: hosted |
759 | version: "2.0.0" | 766 | version: "2.0.0" |
760 | location: | 767 | location: |
761 | dependency: "direct main" | 768 | dependency: "direct main" |
762 | description: | 769 | description: |
763 | name: location | 770 | name: location |
764 | - url: "https://pub.dartlang.org" | 771 | + url: "https://pub.flutter-io.cn" |
765 | source: hosted | 772 | source: hosted |
766 | version: "4.4.0" | 773 | version: "4.4.0" |
767 | location_platform_interface: | 774 | location_platform_interface: |
768 | dependency: transitive | 775 | dependency: transitive |
769 | description: | 776 | description: |
770 | name: location_platform_interface | 777 | name: location_platform_interface |
771 | - url: "https://pub.dartlang.org" | 778 | + url: "https://pub.flutter-io.cn" |
772 | source: hosted | 779 | source: hosted |
773 | version: "2.3.0" | 780 | version: "2.3.0" |
774 | location_web: | 781 | location_web: |
775 | dependency: transitive | 782 | dependency: transitive |
776 | description: | 783 | description: |
777 | name: location_web | 784 | name: location_web |
778 | - url: "https://pub.dartlang.org" | 785 | + url: "https://pub.flutter-io.cn" |
779 | source: hosted | 786 | source: hosted |
780 | version: "3.1.1" | 787 | version: "3.1.1" |
781 | logger: | 788 | logger: |
782 | dependency: transitive | 789 | dependency: transitive |
783 | description: | 790 | description: |
784 | name: logger | 791 | name: logger |
785 | - url: "https://pub.dartlang.org" | 792 | + url: "https://pub.flutter-io.cn" |
786 | source: hosted | 793 | source: hosted |
787 | version: "1.1.0" | 794 | version: "1.1.0" |
788 | logging: | 795 | logging: |
789 | dependency: transitive | 796 | dependency: transitive |
790 | description: | 797 | description: |
791 | name: logging | 798 | name: logging |
792 | - url: "https://pub.dartlang.org" | 799 | + url: "https://pub.flutter-io.cn" |
793 | source: hosted | 800 | source: hosted |
794 | - version: "1.0.2" | 801 | + version: "1.1.0" |
795 | matcher: | 802 | matcher: |
796 | dependency: transitive | 803 | dependency: transitive |
797 | description: | 804 | description: |
798 | name: matcher | 805 | name: matcher |
799 | - url: "https://pub.dartlang.org" | 806 | + url: "https://pub.flutter-io.cn" |
800 | source: hosted | 807 | source: hosted |
801 | version: "0.12.12" | 808 | version: "0.12.12" |
802 | material_color_utilities: | 809 | material_color_utilities: |
803 | dependency: transitive | 810 | dependency: transitive |
804 | description: | 811 | description: |
805 | name: material_color_utilities | 812 | name: material_color_utilities |
806 | - url: "https://pub.dartlang.org" | 813 | + url: "https://pub.flutter-io.cn" |
807 | source: hosted | 814 | source: hosted |
808 | version: "0.1.5" | 815 | version: "0.1.5" |
809 | meta: | 816 | meta: |
810 | dependency: transitive | 817 | dependency: transitive |
811 | description: | 818 | description: |
812 | name: meta | 819 | name: meta |
813 | - url: "https://pub.dartlang.org" | 820 | + url: "https://pub.flutter-io.cn" |
814 | source: hosted | 821 | source: hosted |
815 | version: "1.8.0" | 822 | version: "1.8.0" |
816 | mime: | 823 | mime: |
817 | dependency: transitive | 824 | dependency: transitive |
818 | description: | 825 | description: |
819 | name: mime | 826 | name: mime |
820 | - url: "https://pub.dartlang.org" | 827 | + url: "https://pub.flutter-io.cn" |
821 | source: hosted | 828 | source: hosted |
822 | version: "1.0.2" | 829 | version: "1.0.2" |
823 | nested: | 830 | nested: |
824 | dependency: transitive | 831 | dependency: transitive |
825 | description: | 832 | description: |
826 | name: nested | 833 | name: nested |
827 | - url: "https://pub.dartlang.org" | 834 | + url: "https://pub.flutter-io.cn" |
828 | source: hosted | 835 | source: hosted |
829 | version: "1.0.0" | 836 | version: "1.0.0" |
830 | node_preamble: | 837 | node_preamble: |
831 | dependency: transitive | 838 | dependency: transitive |
832 | description: | 839 | description: |
833 | name: node_preamble | 840 | name: node_preamble |
834 | - url: "https://pub.dartlang.org" | 841 | + url: "https://pub.flutter-io.cn" |
835 | source: hosted | 842 | source: hosted |
836 | version: "2.0.1" | 843 | version: "2.0.1" |
837 | octo_image: | 844 | octo_image: |
838 | dependency: transitive | 845 | dependency: transitive |
839 | description: | 846 | description: |
840 | name: octo_image | 847 | name: octo_image |
841 | - url: "https://pub.dartlang.org" | 848 | + url: "https://pub.flutter-io.cn" |
842 | source: hosted | 849 | source: hosted |
843 | version: "1.0.2" | 850 | version: "1.0.2" |
844 | oktoast: | 851 | oktoast: |
845 | dependency: "direct main" | 852 | dependency: "direct main" |
846 | description: | 853 | description: |
847 | name: oktoast | 854 | name: oktoast |
848 | - url: "https://pub.dartlang.org" | 855 | + url: "https://pub.flutter-io.cn" |
849 | source: hosted | 856 | source: hosted |
850 | - version: "3.2.0" | 857 | + version: "3.3.1" |
851 | package_config: | 858 | package_config: |
852 | dependency: transitive | 859 | dependency: transitive |
853 | description: | 860 | description: |
854 | name: package_config | 861 | name: package_config |
855 | - url: "https://pub.dartlang.org" | 862 | + url: "https://pub.flutter-io.cn" |
856 | source: hosted | 863 | source: hosted |
857 | version: "2.1.0" | 864 | version: "2.1.0" |
858 | path: | 865 | path: |
859 | dependency: transitive | 866 | dependency: transitive |
860 | description: | 867 | description: |
861 | name: path | 868 | name: path |
862 | - url: "https://pub.dartlang.org" | 869 | + url: "https://pub.flutter-io.cn" |
863 | source: hosted | 870 | source: hosted |
864 | version: "1.8.2" | 871 | version: "1.8.2" |
865 | path_provider: | 872 | path_provider: |
866 | dependency: "direct main" | 873 | dependency: "direct main" |
867 | description: | 874 | description: |
868 | name: path_provider | 875 | name: path_provider |
869 | - url: "https://pub.dartlang.org" | 876 | + url: "https://pub.flutter-io.cn" |
870 | source: hosted | 877 | source: hosted |
871 | version: "2.0.11" | 878 | version: "2.0.11" |
872 | path_provider_android: | 879 | path_provider_android: |
873 | dependency: transitive | 880 | dependency: transitive |
874 | description: | 881 | description: |
875 | name: path_provider_android | 882 | name: path_provider_android |
876 | - url: "https://pub.dartlang.org" | 883 | + url: "https://pub.flutter-io.cn" |
877 | source: hosted | 884 | source: hosted |
878 | - version: "2.0.19" | 885 | + version: "2.0.20" |
879 | path_provider_ios: | 886 | path_provider_ios: |
880 | dependency: transitive | 887 | dependency: transitive |
881 | description: | 888 | description: |
882 | name: path_provider_ios | 889 | name: path_provider_ios |
883 | - url: "https://pub.dartlang.org" | 890 | + url: "https://pub.flutter-io.cn" |
884 | source: hosted | 891 | source: hosted |
885 | version: "2.0.11" | 892 | version: "2.0.11" |
886 | path_provider_linux: | 893 | path_provider_linux: |
887 | dependency: transitive | 894 | dependency: transitive |
888 | description: | 895 | description: |
889 | name: path_provider_linux | 896 | name: path_provider_linux |
890 | - url: "https://pub.dartlang.org" | 897 | + url: "https://pub.flutter-io.cn" |
891 | source: hosted | 898 | source: hosted |
892 | version: "2.1.7" | 899 | version: "2.1.7" |
893 | path_provider_macos: | 900 | path_provider_macos: |
894 | dependency: transitive | 901 | dependency: transitive |
895 | description: | 902 | description: |
896 | name: path_provider_macos | 903 | name: path_provider_macos |
897 | - url: "https://pub.dartlang.org" | 904 | + url: "https://pub.flutter-io.cn" |
898 | source: hosted | 905 | source: hosted |
899 | version: "2.0.6" | 906 | version: "2.0.6" |
900 | path_provider_platform_interface: | 907 | path_provider_platform_interface: |
901 | dependency: transitive | 908 | dependency: transitive |
902 | description: | 909 | description: |
903 | name: path_provider_platform_interface | 910 | name: path_provider_platform_interface |
904 | - url: "https://pub.dartlang.org" | 911 | + url: "https://pub.flutter-io.cn" |
905 | source: hosted | 912 | source: hosted |
906 | - version: "2.0.4" | 913 | + version: "2.0.5" |
907 | path_provider_windows: | 914 | path_provider_windows: |
908 | dependency: transitive | 915 | dependency: transitive |
909 | description: | 916 | description: |
910 | name: path_provider_windows | 917 | name: path_provider_windows |
911 | - url: "https://pub.dartlang.org" | 918 | + url: "https://pub.flutter-io.cn" |
912 | source: hosted | 919 | source: hosted |
913 | version: "2.0.7" | 920 | version: "2.0.7" |
914 | pausable_timer: | 921 | pausable_timer: |
915 | dependency: "direct main" | 922 | dependency: "direct main" |
916 | description: | 923 | description: |
917 | name: pausable_timer | 924 | name: pausable_timer |
918 | - url: "https://pub.dartlang.org" | 925 | + url: "https://pub.flutter-io.cn" |
919 | source: hosted | 926 | source: hosted |
920 | - version: "1.0.0+5" | 927 | + version: "1.0.0+6" |
921 | pedantic: | 928 | pedantic: |
922 | dependency: transitive | 929 | dependency: transitive |
923 | description: | 930 | description: |
924 | name: pedantic | 931 | name: pedantic |
925 | - url: "https://pub.dartlang.org" | 932 | + url: "https://pub.flutter-io.cn" |
926 | source: hosted | 933 | source: hosted |
927 | version: "1.11.1" | 934 | version: "1.11.1" |
928 | permission_handler: | 935 | permission_handler: |
929 | dependency: "direct dev" | 936 | dependency: "direct dev" |
930 | description: | 937 | description: |
931 | name: permission_handler | 938 | name: permission_handler |
932 | - url: "https://pub.dartlang.org" | 939 | + url: "https://pub.flutter-io.cn" |
933 | source: hosted | 940 | source: hosted |
934 | version: "9.2.0" | 941 | version: "9.2.0" |
935 | permission_handler_android: | 942 | permission_handler_android: |
936 | dependency: transitive | 943 | dependency: transitive |
937 | description: | 944 | description: |
938 | name: permission_handler_android | 945 | name: permission_handler_android |
939 | - url: "https://pub.dartlang.org" | 946 | + url: "https://pub.flutter-io.cn" |
940 | source: hosted | 947 | source: hosted |
941 | version: "9.0.2+1" | 948 | version: "9.0.2+1" |
942 | permission_handler_apple: | 949 | permission_handler_apple: |
943 | dependency: transitive | 950 | dependency: transitive |
944 | description: | 951 | description: |
945 | name: permission_handler_apple | 952 | name: permission_handler_apple |
946 | - url: "https://pub.dartlang.org" | 953 | + url: "https://pub.flutter-io.cn" |
947 | source: hosted | 954 | source: hosted |
948 | - version: "9.0.4" | 955 | + version: "9.0.6" |
949 | permission_handler_platform_interface: | 956 | permission_handler_platform_interface: |
950 | dependency: transitive | 957 | dependency: transitive |
951 | description: | 958 | description: |
952 | name: permission_handler_platform_interface | 959 | name: permission_handler_platform_interface |
953 | - url: "https://pub.dartlang.org" | 960 | + url: "https://pub.flutter-io.cn" |
954 | source: hosted | 961 | source: hosted |
955 | - version: "3.7.0" | 962 | + version: "3.9.0" |
956 | permission_handler_windows: | 963 | permission_handler_windows: |
957 | dependency: transitive | 964 | dependency: transitive |
958 | description: | 965 | description: |
959 | name: permission_handler_windows | 966 | name: permission_handler_windows |
960 | - url: "https://pub.dartlang.org" | 967 | + url: "https://pub.flutter-io.cn" |
961 | source: hosted | 968 | source: hosted |
962 | - version: "0.1.0" | 969 | + version: "0.1.1" |
963 | petitparser: | 970 | petitparser: |
964 | dependency: transitive | 971 | dependency: transitive |
965 | description: | 972 | description: |
966 | name: petitparser | 973 | name: petitparser |
967 | - url: "https://pub.dartlang.org" | 974 | + url: "https://pub.flutter-io.cn" |
968 | source: hosted | 975 | source: hosted |
969 | version: "5.0.0" | 976 | version: "5.0.0" |
970 | platform: | 977 | platform: |
971 | dependency: transitive | 978 | dependency: transitive |
972 | description: | 979 | description: |
973 | name: platform | 980 | name: platform |
974 | - url: "https://pub.dartlang.org" | 981 | + url: "https://pub.flutter-io.cn" |
975 | source: hosted | 982 | source: hosted |
976 | version: "3.1.0" | 983 | version: "3.1.0" |
977 | plugin_platform_interface: | 984 | plugin_platform_interface: |
978 | dependency: transitive | 985 | dependency: transitive |
979 | description: | 986 | description: |
980 | name: plugin_platform_interface | 987 | name: plugin_platform_interface |
981 | - url: "https://pub.dartlang.org" | 988 | + url: "https://pub.flutter-io.cn" |
982 | source: hosted | 989 | source: hosted |
983 | - version: "2.1.2" | 990 | + version: "2.1.3" |
984 | pool: | 991 | pool: |
985 | dependency: transitive | 992 | dependency: transitive |
986 | description: | 993 | description: |
987 | name: pool | 994 | name: pool |
988 | - url: "https://pub.dartlang.org" | 995 | + url: "https://pub.flutter-io.cn" |
989 | source: hosted | 996 | source: hosted |
990 | version: "1.5.1" | 997 | version: "1.5.1" |
991 | process: | 998 | process: |
992 | dependency: transitive | 999 | dependency: transitive |
993 | description: | 1000 | description: |
994 | name: process | 1001 | name: process |
995 | - url: "https://pub.dartlang.org" | 1002 | + url: "https://pub.flutter-io.cn" |
996 | source: hosted | 1003 | source: hosted |
997 | version: "4.2.4" | 1004 | version: "4.2.4" |
998 | provider: | 1005 | provider: |
999 | dependency: "direct main" | 1006 | dependency: "direct main" |
1000 | description: | 1007 | description: |
1001 | name: provider | 1008 | name: provider |
1002 | - url: "https://pub.dartlang.org" | 1009 | + url: "https://pub.flutter-io.cn" |
1003 | source: hosted | 1010 | source: hosted |
1004 | version: "6.0.3" | 1011 | version: "6.0.3" |
1005 | pub_semver: | 1012 | pub_semver: |
1006 | dependency: transitive | 1013 | dependency: transitive |
1007 | description: | 1014 | description: |
1008 | name: pub_semver | 1015 | name: pub_semver |
1009 | - url: "https://pub.dartlang.org" | 1016 | + url: "https://pub.flutter-io.cn" |
1010 | source: hosted | 1017 | source: hosted |
1011 | version: "2.1.1" | 1018 | version: "2.1.1" |
1012 | pubspec_parse: | 1019 | pubspec_parse: |
1013 | dependency: transitive | 1020 | dependency: transitive |
1014 | description: | 1021 | description: |
1015 | name: pubspec_parse | 1022 | name: pubspec_parse |
1016 | - url: "https://pub.dartlang.org" | 1023 | + url: "https://pub.flutter-io.cn" |
1017 | source: hosted | 1024 | source: hosted |
1018 | - version: "1.2.0" | 1025 | + version: "1.2.1" |
1019 | quick_actions: | 1026 | quick_actions: |
1020 | dependency: "direct main" | 1027 | dependency: "direct main" |
1021 | description: | 1028 | description: |
1022 | name: quick_actions | 1029 | name: quick_actions |
1023 | - url: "https://pub.dartlang.org" | 1030 | + url: "https://pub.flutter-io.cn" |
1024 | source: hosted | 1031 | source: hosted |
1025 | version: "0.6.0+11" | 1032 | version: "0.6.0+11" |
1026 | quick_actions_android: | 1033 | quick_actions_android: |
1027 | dependency: transitive | 1034 | dependency: transitive |
1028 | description: | 1035 | description: |
1029 | name: quick_actions_android | 1036 | name: quick_actions_android |
1030 | - url: "https://pub.dartlang.org" | 1037 | + url: "https://pub.flutter-io.cn" |
1031 | source: hosted | 1038 | source: hosted |
1032 | version: "0.6.2" | 1039 | version: "0.6.2" |
1033 | quick_actions_ios: | 1040 | quick_actions_ios: |
1034 | dependency: transitive | 1041 | dependency: transitive |
1035 | description: | 1042 | description: |
1036 | name: quick_actions_ios | 1043 | name: quick_actions_ios |
1037 | - url: "https://pub.dartlang.org" | 1044 | + url: "https://pub.flutter-io.cn" |
1038 | source: hosted | 1045 | source: hosted |
1039 | - version: "0.6.0+13" | 1046 | + version: "0.6.0+14" |
1040 | quick_actions_platform_interface: | 1047 | quick_actions_platform_interface: |
1041 | dependency: transitive | 1048 | dependency: transitive |
1042 | description: | 1049 | description: |
1043 | name: quick_actions_platform_interface | 1050 | name: quick_actions_platform_interface |
1044 | - url: "https://pub.dartlang.org" | 1051 | + url: "https://pub.flutter-io.cn" |
1045 | source: hosted | 1052 | source: hosted |
1046 | - version: "1.0.2" | 1053 | + version: "1.0.3" |
1047 | quiver: | 1054 | quiver: |
1048 | dependency: transitive | 1055 | dependency: transitive |
1049 | description: | 1056 | description: |
1050 | name: quiver | 1057 | name: quiver |
1051 | - url: "https://pub.dartlang.org" | 1058 | + url: "https://pub.flutter-io.cn" |
1052 | source: hosted | 1059 | source: hosted |
1053 | version: "3.1.0" | 1060 | version: "3.1.0" |
1054 | rational: | 1061 | rational: |
1055 | dependency: transitive | 1062 | dependency: transitive |
1056 | description: | 1063 | description: |
1057 | name: rational | 1064 | name: rational |
1058 | - url: "https://pub.dartlang.org" | 1065 | + url: "https://pub.flutter-io.cn" |
1059 | source: hosted | 1066 | source: hosted |
1060 | version: "1.2.1" | 1067 | version: "1.2.1" |
1061 | recase: | 1068 | recase: |
1062 | dependency: transitive | 1069 | dependency: transitive |
1063 | description: | 1070 | description: |
1064 | name: recase | 1071 | name: recase |
1065 | - url: "https://pub.dartlang.org" | 1072 | + url: "https://pub.flutter-io.cn" |
1066 | source: hosted | 1073 | source: hosted |
1067 | - version: "4.0.0" | 1074 | + version: "4.1.0" |
1068 | rxdart: | 1075 | rxdart: |
1069 | dependency: "direct main" | 1076 | dependency: "direct main" |
1070 | description: | 1077 | description: |
1071 | name: rxdart | 1078 | name: rxdart |
1072 | - url: "https://pub.dartlang.org" | 1079 | + url: "https://pub.flutter-io.cn" |
1073 | source: hosted | 1080 | source: hosted |
1074 | version: "0.27.5" | 1081 | version: "0.27.5" |
1075 | safemap: | 1082 | safemap: |
1076 | dependency: "direct main" | 1083 | dependency: "direct main" |
1077 | description: | 1084 | description: |
1078 | name: safemap | 1085 | name: safemap |
1079 | - url: "https://pub.dartlang.org" | 1086 | + url: "https://pub.flutter-io.cn" |
1080 | source: hosted | 1087 | source: hosted |
1081 | version: "2.1.0" | 1088 | version: "2.1.0" |
1082 | share_plus: | 1089 | share_plus: |
1083 | dependency: "direct main" | 1090 | dependency: "direct main" |
1084 | description: | 1091 | description: |
1085 | name: share_plus | 1092 | name: share_plus |
1086 | - url: "https://pub.dartlang.org" | 1093 | + url: "https://pub.flutter-io.cn" |
1087 | source: hosted | 1094 | source: hosted |
1088 | - version: "4.0.10+1" | 1095 | + version: "4.5.3" |
1089 | share_plus_linux: | 1096 | share_plus_linux: |
1090 | dependency: transitive | 1097 | dependency: transitive |
1091 | description: | 1098 | description: |
1092 | name: share_plus_linux | 1099 | name: share_plus_linux |
1093 | - url: "https://pub.dartlang.org" | 1100 | + url: "https://pub.flutter-io.cn" |
1094 | source: hosted | 1101 | source: hosted |
1095 | version: "3.0.0" | 1102 | version: "3.0.0" |
1096 | share_plus_macos: | 1103 | share_plus_macos: |
1097 | dependency: transitive | 1104 | dependency: transitive |
1098 | description: | 1105 | description: |
1099 | name: share_plus_macos | 1106 | name: share_plus_macos |
1100 | - url: "https://pub.dartlang.org" | 1107 | + url: "https://pub.flutter-io.cn" |
1101 | source: hosted | 1108 | source: hosted |
1102 | version: "3.0.1" | 1109 | version: "3.0.1" |
1103 | share_plus_platform_interface: | 1110 | share_plus_platform_interface: |
1104 | dependency: transitive | 1111 | dependency: transitive |
1105 | description: | 1112 | description: |
1106 | name: share_plus_platform_interface | 1113 | name: share_plus_platform_interface |
1107 | - url: "https://pub.dartlang.org" | 1114 | + url: "https://pub.flutter-io.cn" |
1108 | source: hosted | 1115 | source: hosted |
1109 | - version: "3.0.3" | 1116 | + version: "3.1.1" |
1110 | share_plus_web: | 1117 | share_plus_web: |
1111 | dependency: transitive | 1118 | dependency: transitive |
1112 | description: | 1119 | description: |
1113 | name: share_plus_web | 1120 | name: share_plus_web |
1114 | - url: "https://pub.dartlang.org" | 1121 | + url: "https://pub.flutter-io.cn" |
1115 | source: hosted | 1122 | source: hosted |
1116 | - version: "3.0.1" | 1123 | + version: "3.1.0" |
1117 | share_plus_windows: | 1124 | share_plus_windows: |
1118 | dependency: transitive | 1125 | dependency: transitive |
1119 | description: | 1126 | description: |
1120 | name: share_plus_windows | 1127 | name: share_plus_windows |
1121 | - url: "https://pub.dartlang.org" | 1128 | + url: "https://pub.flutter-io.cn" |
1122 | source: hosted | 1129 | source: hosted |
1123 | version: "3.0.1" | 1130 | version: "3.0.1" |
1124 | shared_preferences: | 1131 | shared_preferences: |
1125 | dependency: transitive | 1132 | dependency: transitive |
1126 | description: | 1133 | description: |
1127 | name: shared_preferences | 1134 | name: shared_preferences |
1128 | - url: "https://pub.dartlang.org" | 1135 | + url: "https://pub.flutter-io.cn" |
1129 | source: hosted | 1136 | source: hosted |
1130 | version: "2.0.15" | 1137 | version: "2.0.15" |
1131 | shared_preferences_android: | 1138 | shared_preferences_android: |
1132 | dependency: transitive | 1139 | dependency: transitive |
1133 | description: | 1140 | description: |
1134 | name: shared_preferences_android | 1141 | name: shared_preferences_android |
1135 | - url: "https://pub.dartlang.org" | 1142 | + url: "https://pub.flutter-io.cn" |
1136 | source: hosted | 1143 | source: hosted |
1137 | - version: "2.0.12" | 1144 | + version: "2.0.13" |
1138 | shared_preferences_ios: | 1145 | shared_preferences_ios: |
1139 | dependency: transitive | 1146 | dependency: transitive |
1140 | description: | 1147 | description: |
1141 | name: shared_preferences_ios | 1148 | name: shared_preferences_ios |
1142 | - url: "https://pub.dartlang.org" | 1149 | + url: "https://pub.flutter-io.cn" |
1143 | source: hosted | 1150 | source: hosted |
1144 | version: "2.1.1" | 1151 | version: "2.1.1" |
1145 | shared_preferences_linux: | 1152 | shared_preferences_linux: |
1146 | dependency: transitive | 1153 | dependency: transitive |
1147 | description: | 1154 | description: |
1148 | name: shared_preferences_linux | 1155 | name: shared_preferences_linux |
1149 | - url: "https://pub.dartlang.org" | 1156 | + url: "https://pub.flutter-io.cn" |
1150 | source: hosted | 1157 | source: hosted |
1151 | version: "2.1.1" | 1158 | version: "2.1.1" |
1152 | shared_preferences_macos: | 1159 | shared_preferences_macos: |
1153 | dependency: transitive | 1160 | dependency: transitive |
1154 | description: | 1161 | description: |
1155 | name: shared_preferences_macos | 1162 | name: shared_preferences_macos |
1156 | - url: "https://pub.dartlang.org" | 1163 | + url: "https://pub.flutter-io.cn" |
1157 | source: hosted | 1164 | source: hosted |
1158 | version: "2.0.4" | 1165 | version: "2.0.4" |
1159 | shared_preferences_platform_interface: | 1166 | shared_preferences_platform_interface: |
1160 | dependency: transitive | 1167 | dependency: transitive |
1161 | description: | 1168 | description: |
1162 | name: shared_preferences_platform_interface | 1169 | name: shared_preferences_platform_interface |
1163 | - url: "https://pub.dartlang.org" | 1170 | + url: "https://pub.flutter-io.cn" |
1164 | source: hosted | 1171 | source: hosted |
1165 | - version: "2.0.0" | 1172 | + version: "2.1.0" |
1166 | shared_preferences_web: | 1173 | shared_preferences_web: |
1167 | dependency: transitive | 1174 | dependency: transitive |
1168 | description: | 1175 | description: |
1169 | name: shared_preferences_web | 1176 | name: shared_preferences_web |
1170 | - url: "https://pub.dartlang.org" | 1177 | + url: "https://pub.flutter-io.cn" |
1171 | source: hosted | 1178 | source: hosted |
1172 | version: "2.0.4" | 1179 | version: "2.0.4" |
1173 | shared_preferences_windows: | 1180 | shared_preferences_windows: |
1174 | dependency: transitive | 1181 | dependency: transitive |
1175 | description: | 1182 | description: |
1176 | name: shared_preferences_windows | 1183 | name: shared_preferences_windows |
1177 | - url: "https://pub.dartlang.org" | 1184 | + url: "https://pub.flutter-io.cn" |
1178 | source: hosted | 1185 | source: hosted |
1179 | version: "2.1.1" | 1186 | version: "2.1.1" |
1180 | shelf: | 1187 | shelf: |
1181 | dependency: transitive | 1188 | dependency: transitive |
1182 | description: | 1189 | description: |
1183 | name: shelf | 1190 | name: shelf |
1184 | - url: "https://pub.dartlang.org" | 1191 | + url: "https://pub.flutter-io.cn" |
1185 | source: hosted | 1192 | source: hosted |
1186 | - version: "1.3.2" | 1193 | + version: "1.4.0" |
1187 | shelf_packages_handler: | 1194 | shelf_packages_handler: |
1188 | dependency: transitive | 1195 | dependency: transitive |
1189 | description: | 1196 | description: |
1190 | name: shelf_packages_handler | 1197 | name: shelf_packages_handler |
1191 | - url: "https://pub.dartlang.org" | 1198 | + url: "https://pub.flutter-io.cn" |
1192 | source: hosted | 1199 | source: hosted |
1193 | version: "3.0.1" | 1200 | version: "3.0.1" |
1194 | shelf_static: | 1201 | shelf_static: |
1195 | dependency: transitive | 1202 | dependency: transitive |
1196 | description: | 1203 | description: |
1197 | name: shelf_static | 1204 | name: shelf_static |
1198 | - url: "https://pub.dartlang.org" | 1205 | + url: "https://pub.flutter-io.cn" |
1199 | source: hosted | 1206 | source: hosted |
1200 | version: "1.1.1" | 1207 | version: "1.1.1" |
1201 | shelf_web_socket: | 1208 | shelf_web_socket: |
1202 | dependency: transitive | 1209 | dependency: transitive |
1203 | description: | 1210 | description: |
1204 | name: shelf_web_socket | 1211 | name: shelf_web_socket |
1205 | - url: "https://pub.dartlang.org" | 1212 | + url: "https://pub.flutter-io.cn" |
1206 | source: hosted | 1213 | source: hosted |
1207 | version: "1.0.2" | 1214 | version: "1.0.2" |
1208 | sign_in_with_apple: | 1215 | sign_in_with_apple: |
1209 | dependency: "direct main" | 1216 | dependency: "direct main" |
1210 | description: | 1217 | description: |
1211 | name: sign_in_with_apple | 1218 | name: sign_in_with_apple |
1212 | - url: "https://pub.dartlang.org" | 1219 | + url: "https://pub.flutter-io.cn" |
1213 | source: hosted | 1220 | source: hosted |
1214 | version: "4.1.0" | 1221 | version: "4.1.0" |
1215 | sign_in_with_apple_platform_interface: | 1222 | sign_in_with_apple_platform_interface: |
1216 | dependency: transitive | 1223 | dependency: transitive |
1217 | description: | 1224 | description: |
1218 | name: sign_in_with_apple_platform_interface | 1225 | name: sign_in_with_apple_platform_interface |
1219 | - url: "https://pub.dartlang.org" | 1226 | + url: "https://pub.flutter-io.cn" |
1220 | source: hosted | 1227 | source: hosted |
1221 | version: "1.0.0" | 1228 | version: "1.0.0" |
1222 | sign_in_with_apple_web: | 1229 | sign_in_with_apple_web: |
1223 | dependency: transitive | 1230 | dependency: transitive |
1224 | description: | 1231 | description: |
1225 | name: sign_in_with_apple_web | 1232 | name: sign_in_with_apple_web |
1226 | - url: "https://pub.dartlang.org" | 1233 | + url: "https://pub.flutter-io.cn" |
1227 | source: hosted | 1234 | source: hosted |
1228 | version: "1.0.1" | 1235 | version: "1.0.1" |
1229 | sky_engine: | 1236 | sky_engine: |
... | @@ -1235,422 +1242,422 @@ packages: | ... | @@ -1235,422 +1242,422 @@ packages: |
1235 | dependency: transitive | 1242 | dependency: transitive |
1236 | description: | 1243 | description: |
1237 | name: source_gen | 1244 | name: source_gen |
1238 | - url: "https://pub.dartlang.org" | 1245 | + url: "https://pub.flutter-io.cn" |
1239 | source: hosted | 1246 | source: hosted |
1240 | - version: "1.2.2" | 1247 | + version: "1.2.5" |
1241 | source_helper: | 1248 | source_helper: |
1242 | dependency: transitive | 1249 | dependency: transitive |
1243 | description: | 1250 | description: |
1244 | name: source_helper | 1251 | name: source_helper |
1245 | - url: "https://pub.dartlang.org" | 1252 | + url: "https://pub.flutter-io.cn" |
1246 | source: hosted | 1253 | source: hosted |
1247 | - version: "1.3.2" | 1254 | + version: "1.3.3" |
1248 | source_map_stack_trace: | 1255 | source_map_stack_trace: |
1249 | dependency: transitive | 1256 | dependency: transitive |
1250 | description: | 1257 | description: |
1251 | name: source_map_stack_trace | 1258 | name: source_map_stack_trace |
1252 | - url: "https://pub.dartlang.org" | 1259 | + url: "https://pub.flutter-io.cn" |
1253 | source: hosted | 1260 | source: hosted |
1254 | version: "2.1.0" | 1261 | version: "2.1.0" |
1255 | source_maps: | 1262 | source_maps: |
1256 | dependency: transitive | 1263 | dependency: transitive |
1257 | description: | 1264 | description: |
1258 | name: source_maps | 1265 | name: source_maps |
1259 | - url: "https://pub.dartlang.org" | 1266 | + url: "https://pub.flutter-io.cn" |
1260 | source: hosted | 1267 | source: hosted |
1261 | version: "0.10.10" | 1268 | version: "0.10.10" |
1262 | source_span: | 1269 | source_span: |
1263 | dependency: transitive | 1270 | dependency: transitive |
1264 | description: | 1271 | description: |
1265 | name: source_span | 1272 | name: source_span |
1266 | - url: "https://pub.dartlang.org" | 1273 | + url: "https://pub.flutter-io.cn" |
1267 | source: hosted | 1274 | source: hosted |
1268 | version: "1.9.0" | 1275 | version: "1.9.0" |
1269 | sp_util: | 1276 | sp_util: |
1270 | dependency: transitive | 1277 | dependency: transitive |
1271 | description: | 1278 | description: |
1272 | name: sp_util | 1279 | name: sp_util |
1273 | - url: "https://pub.dartlang.org" | 1280 | + url: "https://pub.flutter-io.cn" |
1274 | source: hosted | 1281 | source: hosted |
1275 | version: "2.0.3" | 1282 | version: "2.0.3" |
1276 | sprintf: | 1283 | sprintf: |
1277 | dependency: "direct main" | 1284 | dependency: "direct main" |
1278 | description: | 1285 | description: |
1279 | name: sprintf | 1286 | name: sprintf |
1280 | - url: "https://pub.dartlang.org" | 1287 | + url: "https://pub.flutter-io.cn" |
1281 | source: hosted | 1288 | source: hosted |
1282 | version: "6.0.2" | 1289 | version: "6.0.2" |
1283 | sqflite: | 1290 | sqflite: |
1284 | dependency: transitive | 1291 | dependency: transitive |
1285 | description: | 1292 | description: |
1286 | name: sqflite | 1293 | name: sqflite |
1287 | - url: "https://pub.dartlang.org" | 1294 | + url: "https://pub.flutter-io.cn" |
1288 | source: hosted | 1295 | source: hosted |
1289 | - version: "2.0.3+1" | 1296 | + version: "2.1.0+1" |
1290 | sqflite_common: | 1297 | sqflite_common: |
1291 | dependency: transitive | 1298 | dependency: transitive |
1292 | description: | 1299 | description: |
1293 | name: sqflite_common | 1300 | name: sqflite_common |
1294 | - url: "https://pub.dartlang.org" | 1301 | + url: "https://pub.flutter-io.cn" |
1295 | source: hosted | 1302 | source: hosted |
1296 | - version: "2.2.1+1" | 1303 | + version: "2.3.0" |
1297 | stack_trace: | 1304 | stack_trace: |
1298 | dependency: transitive | 1305 | dependency: transitive |
1299 | description: | 1306 | description: |
1300 | name: stack_trace | 1307 | name: stack_trace |
1301 | - url: "https://pub.dartlang.org" | 1308 | + url: "https://pub.flutter-io.cn" |
1302 | source: hosted | 1309 | source: hosted |
1303 | version: "1.10.0" | 1310 | version: "1.10.0" |
1304 | sticky_headers: | 1311 | sticky_headers: |
1305 | dependency: "direct main" | 1312 | dependency: "direct main" |
1306 | description: | 1313 | description: |
1307 | name: sticky_headers | 1314 | name: sticky_headers |
1308 | - url: "https://pub.dartlang.org" | 1315 | + url: "https://pub.flutter-io.cn" |
1309 | source: hosted | 1316 | source: hosted |
1310 | version: "0.3.0+2" | 1317 | version: "0.3.0+2" |
1311 | stream_channel: | 1318 | stream_channel: |
1312 | dependency: transitive | 1319 | dependency: transitive |
1313 | description: | 1320 | description: |
1314 | name: stream_channel | 1321 | name: stream_channel |
1315 | - url: "https://pub.dartlang.org" | 1322 | + url: "https://pub.flutter-io.cn" |
1316 | source: hosted | 1323 | source: hosted |
1317 | version: "2.1.0" | 1324 | version: "2.1.0" |
1318 | stream_transform: | 1325 | stream_transform: |
1319 | dependency: transitive | 1326 | dependency: transitive |
1320 | description: | 1327 | description: |
1321 | name: stream_transform | 1328 | name: stream_transform |
1322 | - url: "https://pub.dartlang.org" | 1329 | + url: "https://pub.flutter-io.cn" |
1323 | source: hosted | 1330 | source: hosted |
1324 | - version: "2.0.0" | 1331 | + version: "2.0.1" |
1325 | string_scanner: | 1332 | string_scanner: |
1326 | dependency: transitive | 1333 | dependency: transitive |
1327 | description: | 1334 | description: |
1328 | name: string_scanner | 1335 | name: string_scanner |
1329 | - url: "https://pub.dartlang.org" | 1336 | + url: "https://pub.flutter-io.cn" |
1330 | source: hosted | 1337 | source: hosted |
1331 | version: "1.1.1" | 1338 | version: "1.1.1" |
1332 | sync_http: | 1339 | sync_http: |
1333 | dependency: transitive | 1340 | dependency: transitive |
1334 | description: | 1341 | description: |
1335 | name: sync_http | 1342 | name: sync_http |
1336 | - url: "https://pub.dartlang.org" | 1343 | + url: "https://pub.flutter-io.cn" |
1337 | source: hosted | 1344 | source: hosted |
1338 | version: "0.3.1" | 1345 | version: "0.3.1" |
1339 | synchronized: | 1346 | synchronized: |
1340 | dependency: transitive | 1347 | dependency: transitive |
1341 | description: | 1348 | description: |
1342 | name: synchronized | 1349 | name: synchronized |
1343 | - url: "https://pub.dartlang.org" | 1350 | + url: "https://pub.flutter-io.cn" |
1344 | source: hosted | 1351 | source: hosted |
1345 | - version: "3.0.0+2" | 1352 | + version: "3.0.0+3" |
1346 | tapped: | 1353 | tapped: |
1347 | dependency: "direct main" | 1354 | dependency: "direct main" |
1348 | description: | 1355 | description: |
1349 | name: tapped | 1356 | name: tapped |
1350 | - url: "https://pub.dartlang.org" | 1357 | + url: "https://pub.flutter-io.cn" |
1351 | source: hosted | 1358 | source: hosted |
1352 | version: "2.0.0" | 1359 | version: "2.0.0" |
1353 | term_glyph: | 1360 | term_glyph: |
1354 | dependency: transitive | 1361 | dependency: transitive |
1355 | description: | 1362 | description: |
1356 | name: term_glyph | 1363 | name: term_glyph |
1357 | - url: "https://pub.dartlang.org" | 1364 | + url: "https://pub.flutter-io.cn" |
1358 | source: hosted | 1365 | source: hosted |
1359 | version: "1.2.1" | 1366 | version: "1.2.1" |
1360 | test: | 1367 | test: |
1361 | dependency: "direct dev" | 1368 | dependency: "direct dev" |
1362 | description: | 1369 | description: |
1363 | name: test | 1370 | name: test |
1364 | - url: "https://pub.dartlang.org" | 1371 | + url: "https://pub.flutter-io.cn" |
1365 | source: hosted | 1372 | source: hosted |
1366 | version: "1.21.4" | 1373 | version: "1.21.4" |
1367 | test_api: | 1374 | test_api: |
1368 | dependency: transitive | 1375 | dependency: transitive |
1369 | description: | 1376 | description: |
1370 | name: test_api | 1377 | name: test_api |
1371 | - url: "https://pub.dartlang.org" | 1378 | + url: "https://pub.flutter-io.cn" |
1372 | source: hosted | 1379 | source: hosted |
1373 | version: "0.4.12" | 1380 | version: "0.4.12" |
1374 | test_core: | 1381 | test_core: |
1375 | dependency: transitive | 1382 | dependency: transitive |
1376 | description: | 1383 | description: |
1377 | name: test_core | 1384 | name: test_core |
1378 | - url: "https://pub.dartlang.org" | 1385 | + url: "https://pub.flutter-io.cn" |
1379 | source: hosted | 1386 | source: hosted |
1380 | version: "0.4.16" | 1387 | version: "0.4.16" |
1381 | timing: | 1388 | timing: |
1382 | dependency: transitive | 1389 | dependency: transitive |
1383 | description: | 1390 | description: |
1384 | name: timing | 1391 | name: timing |
1385 | - url: "https://pub.dartlang.org" | 1392 | + url: "https://pub.flutter-io.cn" |
1386 | source: hosted | 1393 | source: hosted |
1387 | version: "1.0.0" | 1394 | version: "1.0.0" |
1388 | twitter_login: | 1395 | twitter_login: |
1389 | dependency: "direct main" | 1396 | dependency: "direct main" |
1390 | description: | 1397 | description: |
1391 | name: twitter_login | 1398 | name: twitter_login |
1392 | - url: "https://pub.dartlang.org" | 1399 | + url: "https://pub.flutter-io.cn" |
1393 | source: hosted | 1400 | source: hosted |
1394 | version: "4.2.3" | 1401 | version: "4.2.3" |
1395 | typed_data: | 1402 | typed_data: |
1396 | dependency: transitive | 1403 | dependency: transitive |
1397 | description: | 1404 | description: |
1398 | name: typed_data | 1405 | name: typed_data |
1399 | - url: "https://pub.dartlang.org" | 1406 | + url: "https://pub.flutter-io.cn" |
1400 | source: hosted | 1407 | source: hosted |
1401 | version: "1.3.1" | 1408 | version: "1.3.1" |
1402 | universal_io: | 1409 | universal_io: |
1403 | dependency: transitive | 1410 | dependency: transitive |
1404 | description: | 1411 | description: |
1405 | name: universal_io | 1412 | name: universal_io |
1406 | - url: "https://pub.dartlang.org" | 1413 | + url: "https://pub.flutter-io.cn" |
1407 | source: hosted | 1414 | source: hosted |
1408 | version: "2.0.4" | 1415 | version: "2.0.4" |
1409 | url_launcher: | 1416 | url_launcher: |
1410 | dependency: "direct main" | 1417 | dependency: "direct main" |
1411 | description: | 1418 | description: |
1412 | name: url_launcher | 1419 | name: url_launcher |
1413 | - url: "https://pub.dartlang.org" | 1420 | + url: "https://pub.flutter-io.cn" |
1414 | source: hosted | 1421 | source: hosted |
1415 | - version: "6.1.5" | 1422 | + version: "6.1.6" |
1416 | url_launcher_android: | 1423 | url_launcher_android: |
1417 | dependency: transitive | 1424 | dependency: transitive |
1418 | description: | 1425 | description: |
1419 | name: url_launcher_android | 1426 | name: url_launcher_android |
1420 | - url: "https://pub.dartlang.org" | 1427 | + url: "https://pub.flutter-io.cn" |
1421 | source: hosted | 1428 | source: hosted |
1422 | - version: "6.0.17" | 1429 | + version: "6.0.19" |
1423 | url_launcher_ios: | 1430 | url_launcher_ios: |
1424 | dependency: transitive | 1431 | dependency: transitive |
1425 | description: | 1432 | description: |
1426 | name: url_launcher_ios | 1433 | name: url_launcher_ios |
1427 | - url: "https://pub.dartlang.org" | 1434 | + url: "https://pub.flutter-io.cn" |
1428 | source: hosted | 1435 | source: hosted |
1429 | version: "6.0.17" | 1436 | version: "6.0.17" |
1430 | url_launcher_linux: | 1437 | url_launcher_linux: |
1431 | dependency: transitive | 1438 | dependency: transitive |
1432 | description: | 1439 | description: |
1433 | name: url_launcher_linux | 1440 | name: url_launcher_linux |
1434 | - url: "https://pub.dartlang.org" | 1441 | + url: "https://pub.flutter-io.cn" |
1435 | source: hosted | 1442 | source: hosted |
1436 | version: "3.0.1" | 1443 | version: "3.0.1" |
1437 | url_launcher_macos: | 1444 | url_launcher_macos: |
1438 | dependency: transitive | 1445 | dependency: transitive |
1439 | description: | 1446 | description: |
1440 | name: url_launcher_macos | 1447 | name: url_launcher_macos |
1441 | - url: "https://pub.dartlang.org" | 1448 | + url: "https://pub.flutter-io.cn" |
1442 | source: hosted | 1449 | source: hosted |
1443 | version: "3.0.1" | 1450 | version: "3.0.1" |
1444 | url_launcher_platform_interface: | 1451 | url_launcher_platform_interface: |
1445 | dependency: transitive | 1452 | dependency: transitive |
1446 | description: | 1453 | description: |
1447 | name: url_launcher_platform_interface | 1454 | name: url_launcher_platform_interface |
1448 | - url: "https://pub.dartlang.org" | 1455 | + url: "https://pub.flutter-io.cn" |
1449 | source: hosted | 1456 | source: hosted |
1450 | - version: "2.1.0" | 1457 | + version: "2.1.1" |
1451 | url_launcher_web: | 1458 | url_launcher_web: |
1452 | dependency: transitive | 1459 | dependency: transitive |
1453 | description: | 1460 | description: |
1454 | name: url_launcher_web | 1461 | name: url_launcher_web |
1455 | - url: "https://pub.dartlang.org" | 1462 | + url: "https://pub.flutter-io.cn" |
1456 | source: hosted | 1463 | source: hosted |
1457 | version: "2.0.13" | 1464 | version: "2.0.13" |
1458 | url_launcher_windows: | 1465 | url_launcher_windows: |
1459 | dependency: transitive | 1466 | dependency: transitive |
1460 | description: | 1467 | description: |
1461 | name: url_launcher_windows | 1468 | name: url_launcher_windows |
1462 | - url: "https://pub.dartlang.org" | 1469 | + url: "https://pub.flutter-io.cn" |
1463 | source: hosted | 1470 | source: hosted |
1464 | version: "3.0.1" | 1471 | version: "3.0.1" |
1465 | url_strategy: | 1472 | url_strategy: |
1466 | dependency: "direct main" | 1473 | dependency: "direct main" |
1467 | description: | 1474 | description: |
1468 | name: url_strategy | 1475 | name: url_strategy |
1469 | - url: "https://pub.dartlang.org" | 1476 | + url: "https://pub.flutter-io.cn" |
1470 | source: hosted | 1477 | source: hosted |
1471 | version: "0.2.0" | 1478 | version: "0.2.0" |
1472 | uuid: | 1479 | uuid: |
1473 | dependency: transitive | 1480 | dependency: transitive |
1474 | description: | 1481 | description: |
1475 | name: uuid | 1482 | name: uuid |
1476 | - url: "https://pub.dartlang.org" | 1483 | + url: "https://pub.flutter-io.cn" |
1477 | source: hosted | 1484 | source: hosted |
1478 | version: "3.0.6" | 1485 | version: "3.0.6" |
1479 | vector_math: | 1486 | vector_math: |
1480 | dependency: transitive | 1487 | dependency: transitive |
1481 | description: | 1488 | description: |
1482 | name: vector_math | 1489 | name: vector_math |
1483 | - url: "https://pub.dartlang.org" | 1490 | + url: "https://pub.flutter-io.cn" |
1484 | source: hosted | 1491 | source: hosted |
1485 | version: "2.1.2" | 1492 | version: "2.1.2" |
1486 | vibration: | 1493 | vibration: |
1487 | dependency: "direct main" | 1494 | dependency: "direct main" |
1488 | description: | 1495 | description: |
1489 | name: vibration | 1496 | name: vibration |
1490 | - url: "https://pub.dartlang.org" | 1497 | + url: "https://pub.flutter-io.cn" |
1491 | source: hosted | 1498 | source: hosted |
1492 | version: "1.7.6" | 1499 | version: "1.7.6" |
1493 | video_player: | 1500 | video_player: |
1494 | dependency: "direct main" | 1501 | dependency: "direct main" |
1495 | description: | 1502 | description: |
1496 | name: video_player | 1503 | name: video_player |
1497 | - url: "https://pub.dartlang.org" | 1504 | + url: "https://pub.flutter-io.cn" |
1498 | source: hosted | 1505 | source: hosted |
1499 | - version: "2.4.6" | 1506 | + version: "2.4.7" |
1500 | video_player_android: | 1507 | video_player_android: |
1501 | dependency: transitive | 1508 | dependency: transitive |
1502 | description: | 1509 | description: |
1503 | name: video_player_android | 1510 | name: video_player_android |
1504 | - url: "https://pub.dartlang.org" | 1511 | + url: "https://pub.flutter-io.cn" |
1505 | source: hosted | 1512 | source: hosted |
1506 | - version: "2.3.8" | 1513 | + version: "2.3.9" |
1507 | video_player_avfoundation: | 1514 | video_player_avfoundation: |
1508 | dependency: transitive | 1515 | dependency: transitive |
1509 | description: | 1516 | description: |
1510 | name: video_player_avfoundation | 1517 | name: video_player_avfoundation |
1511 | - url: "https://pub.dartlang.org" | 1518 | + url: "https://pub.flutter-io.cn" |
1512 | source: hosted | 1519 | source: hosted |
1513 | - version: "2.3.5" | 1520 | + version: "2.3.7" |
1514 | video_player_platform_interface: | 1521 | video_player_platform_interface: |
1515 | dependency: transitive | 1522 | dependency: transitive |
1516 | description: | 1523 | description: |
1517 | name: video_player_platform_interface | 1524 | name: video_player_platform_interface |
1518 | - url: "https://pub.dartlang.org" | 1525 | + url: "https://pub.flutter-io.cn" |
1519 | source: hosted | 1526 | source: hosted |
1520 | version: "5.1.4" | 1527 | version: "5.1.4" |
1521 | video_player_web: | 1528 | video_player_web: |
1522 | dependency: transitive | 1529 | dependency: transitive |
1523 | description: | 1530 | description: |
1524 | name: video_player_web | 1531 | name: video_player_web |
1525 | - url: "https://pub.dartlang.org" | 1532 | + url: "https://pub.flutter-io.cn" |
1526 | source: hosted | 1533 | source: hosted |
1527 | version: "2.0.12" | 1534 | version: "2.0.12" |
1528 | vm_service: | 1535 | vm_service: |
1529 | dependency: transitive | 1536 | dependency: transitive |
1530 | description: | 1537 | description: |
1531 | name: vm_service | 1538 | name: vm_service |
1532 | - url: "https://pub.dartlang.org" | 1539 | + url: "https://pub.flutter-io.cn" |
1533 | source: hosted | 1540 | source: hosted |
1534 | version: "9.0.0" | 1541 | version: "9.0.0" |
1535 | wakelock: | 1542 | wakelock: |
1536 | dependency: "direct main" | 1543 | dependency: "direct main" |
1537 | description: | 1544 | description: |
1538 | name: wakelock | 1545 | name: wakelock |
1539 | - url: "https://pub.dartlang.org" | 1546 | + url: "https://pub.flutter-io.cn" |
1540 | source: hosted | 1547 | source: hosted |
1541 | version: "0.6.2" | 1548 | version: "0.6.2" |
1542 | wakelock_macos: | 1549 | wakelock_macos: |
1543 | dependency: transitive | 1550 | dependency: transitive |
1544 | description: | 1551 | description: |
1545 | name: wakelock_macos | 1552 | name: wakelock_macos |
1546 | - url: "https://pub.dartlang.org" | 1553 | + url: "https://pub.flutter-io.cn" |
1547 | source: hosted | 1554 | source: hosted |
1548 | version: "0.4.0" | 1555 | version: "0.4.0" |
1549 | wakelock_platform_interface: | 1556 | wakelock_platform_interface: |
1550 | dependency: transitive | 1557 | dependency: transitive |
1551 | description: | 1558 | description: |
1552 | name: wakelock_platform_interface | 1559 | name: wakelock_platform_interface |
1553 | - url: "https://pub.dartlang.org" | 1560 | + url: "https://pub.flutter-io.cn" |
1554 | source: hosted | 1561 | source: hosted |
1555 | version: "0.3.0" | 1562 | version: "0.3.0" |
1556 | wakelock_web: | 1563 | wakelock_web: |
1557 | dependency: transitive | 1564 | dependency: transitive |
1558 | description: | 1565 | description: |
1559 | name: wakelock_web | 1566 | name: wakelock_web |
1560 | - url: "https://pub.dartlang.org" | 1567 | + url: "https://pub.flutter-io.cn" |
1561 | source: hosted | 1568 | source: hosted |
1562 | version: "0.4.0" | 1569 | version: "0.4.0" |
1563 | wakelock_windows: | 1570 | wakelock_windows: |
1564 | dependency: transitive | 1571 | dependency: transitive |
1565 | description: | 1572 | description: |
1566 | name: wakelock_windows | 1573 | name: wakelock_windows |
1567 | - url: "https://pub.dartlang.org" | 1574 | + url: "https://pub.flutter-io.cn" |
1568 | source: hosted | 1575 | source: hosted |
1569 | version: "0.2.0" | 1576 | version: "0.2.0" |
1570 | watcher: | 1577 | watcher: |
1571 | dependency: transitive | 1578 | dependency: transitive |
1572 | description: | 1579 | description: |
1573 | name: watcher | 1580 | name: watcher |
1574 | - url: "https://pub.dartlang.org" | 1581 | + url: "https://pub.flutter-io.cn" |
1575 | source: hosted | 1582 | source: hosted |
1576 | version: "1.0.1" | 1583 | version: "1.0.1" |
1577 | web_socket_channel: | 1584 | web_socket_channel: |
1578 | dependency: transitive | 1585 | dependency: transitive |
1579 | description: | 1586 | description: |
1580 | name: web_socket_channel | 1587 | name: web_socket_channel |
1581 | - url: "https://pub.dartlang.org" | 1588 | + url: "https://pub.flutter-io.cn" |
1582 | source: hosted | 1589 | source: hosted |
1583 | version: "2.2.0" | 1590 | version: "2.2.0" |
1584 | webdriver: | 1591 | webdriver: |
1585 | dependency: transitive | 1592 | dependency: transitive |
1586 | description: | 1593 | description: |
1587 | name: webdriver | 1594 | name: webdriver |
1588 | - url: "https://pub.dartlang.org" | 1595 | + url: "https://pub.flutter-io.cn" |
1589 | source: hosted | 1596 | source: hosted |
1590 | version: "3.0.0" | 1597 | version: "3.0.0" |
1591 | webkit_inspection_protocol: | 1598 | webkit_inspection_protocol: |
1592 | dependency: transitive | 1599 | dependency: transitive |
1593 | description: | 1600 | description: |
1594 | name: webkit_inspection_protocol | 1601 | name: webkit_inspection_protocol |
1595 | - url: "https://pub.dartlang.org" | 1602 | + url: "https://pub.flutter-io.cn" |
1596 | source: hosted | 1603 | source: hosted |
1597 | - version: "1.1.0" | 1604 | + version: "1.2.0" |
1598 | webview_flutter: | 1605 | webview_flutter: |
1599 | dependency: "direct main" | 1606 | dependency: "direct main" |
1600 | description: | 1607 | description: |
1601 | name: webview_flutter | 1608 | name: webview_flutter |
1602 | - url: "https://pub.dartlang.org" | 1609 | + url: "https://pub.flutter-io.cn" |
1603 | source: hosted | 1610 | source: hosted |
1604 | version: "3.0.4" | 1611 | version: "3.0.4" |
1605 | webview_flutter_android: | 1612 | webview_flutter_android: |
1606 | dependency: transitive | 1613 | dependency: transitive |
1607 | description: | 1614 | description: |
1608 | name: webview_flutter_android | 1615 | name: webview_flutter_android |
1609 | - url: "https://pub.dartlang.org" | 1616 | + url: "https://pub.flutter-io.cn" |
1610 | source: hosted | 1617 | source: hosted |
1611 | - version: "2.9.5" | 1618 | + version: "2.10.4" |
1612 | webview_flutter_platform_interface: | 1619 | webview_flutter_platform_interface: |
1613 | dependency: transitive | 1620 | dependency: transitive |
1614 | description: | 1621 | description: |
1615 | name: webview_flutter_platform_interface | 1622 | name: webview_flutter_platform_interface |
1616 | - url: "https://pub.dartlang.org" | 1623 | + url: "https://pub.flutter-io.cn" |
1617 | source: hosted | 1624 | source: hosted |
1618 | - version: "1.9.1" | 1625 | + version: "1.9.5" |
1619 | webview_flutter_wkwebview: | 1626 | webview_flutter_wkwebview: |
1620 | dependency: transitive | 1627 | dependency: transitive |
1621 | description: | 1628 | description: |
1622 | name: webview_flutter_wkwebview | 1629 | name: webview_flutter_wkwebview |
1623 | - url: "https://pub.dartlang.org" | 1630 | + url: "https://pub.flutter-io.cn" |
1624 | source: hosted | 1631 | source: hosted |
1625 | - version: "2.9.3" | 1632 | + version: "2.9.5" |
1626 | win32: | 1633 | win32: |
1627 | dependency: transitive | 1634 | dependency: transitive |
1628 | description: | 1635 | description: |
1629 | name: win32 | 1636 | name: win32 |
1630 | - url: "https://pub.dartlang.org" | 1637 | + url: "https://pub.flutter-io.cn" |
1631 | source: hosted | 1638 | source: hosted |
1632 | version: "2.6.1" | 1639 | version: "2.6.1" |
1633 | xdg_directories: | 1640 | xdg_directories: |
1634 | dependency: transitive | 1641 | dependency: transitive |
1635 | description: | 1642 | description: |
1636 | name: xdg_directories | 1643 | name: xdg_directories |
1637 | - url: "https://pub.dartlang.org" | 1644 | + url: "https://pub.flutter-io.cn" |
1638 | source: hosted | 1645 | source: hosted |
1639 | - version: "0.2.0+1" | 1646 | + version: "0.2.0+2" |
1640 | xml: | 1647 | xml: |
1641 | dependency: transitive | 1648 | dependency: transitive |
1642 | description: | 1649 | description: |
1643 | name: xml | 1650 | name: xml |
1644 | - url: "https://pub.dartlang.org" | 1651 | + url: "https://pub.flutter-io.cn" |
1645 | source: hosted | 1652 | source: hosted |
1646 | version: "6.1.0" | 1653 | version: "6.1.0" |
1647 | yaml: | 1654 | yaml: |
1648 | dependency: transitive | 1655 | dependency: transitive |
1649 | description: | 1656 | description: |
1650 | name: yaml | 1657 | name: yaml |
1651 | - url: "https://pub.dartlang.org" | 1658 | + url: "https://pub.flutter-io.cn" |
1652 | source: hosted | 1659 | source: hosted |
1653 | version: "3.1.1" | 1660 | version: "3.1.1" |
1654 | sdks: | 1661 | sdks: |
1655 | - dart: ">=2.17.0 <3.0.0" | 1662 | + dart: ">=2.18.0 <3.0.0" |
1656 | - flutter: ">=3.0.0" | 1663 | + flutter: ">=3.3.0" | ... | ... |
... | @@ -126,6 +126,7 @@ dependencies: | ... | @@ -126,6 +126,7 @@ dependencies: |
126 | wakelock: ^0.6.1+2 | 126 | wakelock: ^0.6.1+2 |
127 | location: ^4.4.0 | 127 | location: ^4.4.0 |
128 | google_maps_flutter: ^2.1.10 | 128 | google_maps_flutter: ^2.1.10 |
129 | + http: ^0.13.5 | ||
129 | 130 | ||
130 | dependency_overrides: | 131 | dependency_overrides: |
131 | decimal: 1.5.0 | 132 | decimal: 1.5.0 | ... | ... |
-
Please register or login to post a comment