Showing
7 changed files
with
248 additions
and
234 deletions
| ... | @@ -6,6 +6,7 @@ | ... | @@ -6,6 +6,7 @@ |
| 6 | android:icon="@mipmap/ic_launcher" | 6 | android:icon="@mipmap/ic_launcher" |
| 7 | android:label="Parlando" | 7 | android:label="Parlando" |
| 8 | android:requestLegacyExternalStorage="true" | 8 | android:requestLegacyExternalStorage="true" |
| 9 | + android:networkSecurityConfig="@xml/network_security_config" | ||
| 9 | tools:replace="android:label"> | 10 | tools:replace="android:label"> |
| 10 | <activity | 11 | <activity |
| 11 | android:name=".MainActivity" | 12 | android:name=".MainActivity" |
| ... | @@ -51,6 +52,9 @@ | ... | @@ -51,6 +52,9 @@ |
| 51 | <meta-data | 52 | <meta-data |
| 52 | android:name="com.facebook.sdk.ClientToken" | 53 | android:name="com.facebook.sdk.ClientToken" |
| 53 | android:value="@string/facebook_client_token" /> | 54 | android:value="@string/facebook_client_token" /> |
| 55 | + <meta-data | ||
| 56 | + android:name="com.amap.api.v2.apikey" | ||
| 57 | + android:value="038a8a2d7280a244b5c51d517023ede3" /> | ||
| 54 | </application> | 58 | </application> |
| 55 | 59 | ||
| 56 | <queries> | 60 | <queries> | ... | ... |
| ... | @@ -15,6 +15,7 @@ import 'package:pausable_timer/pausable_timer.dart'; | ... | @@ -15,6 +15,7 @@ import 'package:pausable_timer/pausable_timer.dart'; |
| 15 | import 'package:flutter_sound_platform_interface/flutter_sound_recorder_platform_interface.dart'; | 15 | import 'package:flutter_sound_platform_interface/flutter_sound_recorder_platform_interface.dart'; |
| 16 | import 'package:flutter/foundation.dart' show kIsWeb; | 16 | import 'package:flutter/foundation.dart' show kIsWeb; |
| 17 | import 'package:permission_handler/permission_handler.dart'; | 17 | import 'package:permission_handler/permission_handler.dart'; |
| 18 | +import 'package:wakelock/wakelock.dart'; | ||
| 18 | 19 | ||
| 19 | import '../poem_router.dart'; | 20 | import '../poem_router.dart'; |
| 20 | 21 | ||
| ... | @@ -158,10 +159,10 @@ class AudioToolBar extends StatefulWidget { | ... | @@ -158,10 +159,10 @@ class AudioToolBar extends StatefulWidget { |
| 158 | }) : super(key: key); | 159 | }) : super(key: key); |
| 159 | 160 | ||
| 160 | @override | 161 | @override |
| 161 | - _AudioToolBarState createState() => _AudioToolBarState(); | 162 | + AudioToolBarState createState() => AudioToolBarState(); |
| 162 | } | 163 | } |
| 163 | 164 | ||
| 164 | -class _AudioToolBarState extends State<AudioToolBar> { | 165 | +class AudioToolBarState extends State<AudioToolBar> { |
| 165 | late final PausableTimer _timer; | 166 | late final PausableTimer _timer; |
| 166 | int currentTimer = 0; | 167 | int currentTimer = 0; |
| 167 | int duration = 60 * 1000; | 168 | int duration = 60 * 1000; |
| ... | @@ -180,7 +181,7 @@ class _AudioToolBarState extends State<AudioToolBar> { | ... | @@ -180,7 +181,7 @@ class _AudioToolBarState extends State<AudioToolBar> { |
| 180 | @override | 181 | @override |
| 181 | void initState() { | 182 | void initState() { |
| 182 | super.initState(); | 183 | super.initState(); |
| 183 | - | 184 | + Wakelock.enable(); |
| 184 | _mPlayer!.openPlayer().then((value) { | 185 | _mPlayer!.openPlayer().then((value) { |
| 185 | setState(() { | 186 | setState(() { |
| 186 | _mPlayerIsInited = true; | 187 | _mPlayerIsInited = true; |
| ... | @@ -216,6 +217,7 @@ class _AudioToolBarState extends State<AudioToolBar> { | ... | @@ -216,6 +217,7 @@ class _AudioToolBarState extends State<AudioToolBar> { |
| 216 | 217 | ||
| 217 | _mRecorder!.closeRecorder(); | 218 | _mRecorder!.closeRecorder(); |
| 218 | _mRecorder = null; | 219 | _mRecorder = null; |
| 220 | + Wakelock.disable(); | ||
| 219 | super.dispose(); | 221 | super.dispose(); |
| 220 | } | 222 | } |
| 221 | 223 | ... | ... |
| ... | @@ -12,6 +12,7 @@ import 'package:path_provider/path_provider.dart'; | ... | @@ -12,6 +12,7 @@ import 'package:path_provider/path_provider.dart'; |
| 12 | import 'package:pausable_timer/pausable_timer.dart'; | 12 | import 'package:pausable_timer/pausable_timer.dart'; |
| 13 | import 'package:video_player/video_player.dart'; | 13 | import 'package:video_player/video_player.dart'; |
| 14 | import 'package:Parlando/extension/int_extension.dart'; | 14 | import 'package:Parlando/extension/int_extension.dart'; |
| 15 | +import 'package:wakelock/wakelock.dart'; | ||
| 15 | 16 | ||
| 16 | import '../poem_router.dart'; | 17 | import '../poem_router.dart'; |
| 17 | 18 | ||
| ... | @@ -55,6 +56,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> | ... | @@ -55,6 +56,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> |
| 55 | 56 | ||
| 56 | @override | 57 | @override |
| 57 | void initState() { | 58 | void initState() { |
| 59 | + Wakelock.enable(); | ||
| 58 | // Hide the status bar in Android | 60 | // Hide the status bar in Android |
| 59 | SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []); | 61 | SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []); |
| 60 | initCameras().then((value) { | 62 | initCameras().then((value) { |
| ... | @@ -69,7 +71,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> | ... | @@ -69,7 +71,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> |
| 69 | 71 | ||
| 70 | _timer = PausableTimer( | 72 | _timer = PausableTimer( |
| 71 | const Duration(milliseconds: 100), | 73 | const Duration(milliseconds: 100), |
| 72 | - () { | 74 | + () { |
| 73 | currentTimer += 100; | 75 | currentTimer += 100; |
| 74 | _timer | 76 | _timer |
| 75 | ..reset() | 77 | ..reset() |
| ... | @@ -244,6 +246,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> | ... | @@ -244,6 +246,7 @@ class PoemRecordVideoPageState extends State<PoemRecordVideoPage> |
| 244 | 246 | ||
| 245 | ///取消计时器 | 247 | ///取消计时器 |
| 246 | _timer.cancel(); | 248 | _timer.cancel(); |
| 249 | + Wakelock.disable(); | ||
| 247 | super.dispose(); | 250 | super.dispose(); |
| 248 | } | 251 | } |
| 249 | 252 | ... | ... |
| ... | @@ -29,7 +29,7 @@ class _AddressSelectPageState extends State<AddressSelectPage> { | ... | @@ -29,7 +29,7 @@ class _AddressSelectPageState extends State<AddressSelectPage> { |
| 29 | super.initState(); | 29 | super.initState(); |
| 30 | // TODO 需要根据项目单独设置keys | 30 | // TODO 需要根据项目单独设置keys |
| 31 | Flutter2dAMap.setApiKey( | 31 | Flutter2dAMap.setApiKey( |
| 32 | - iOSKey: '4327916279bf45a044bb53b947442387', | 32 | + iOSKey: 'd94fbf50f5bfa86cd4e793c9ed4a9a97', |
| 33 | ); | 33 | ); |
| 34 | } | 34 | } |
| 35 | 35 | ... | ... |
| ... | @@ -5,14 +5,14 @@ packages: | ... | @@ -5,14 +5,14 @@ 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: "41.0.0" | 10 | version: "41.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.2.0" | 17 | version: "4.2.0" |
| 18 | animated_radial_menu: | 18 | animated_radial_menu: |
| ... | @@ -26,364 +26,364 @@ packages: | ... | @@ -26,364 +26,364 @@ 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.1.11" | 31 | version: "3.1.11" |
| 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.8.2" | 45 | version: "2.8.2" |
| 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.0" |
| 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.0.0" | 66 | version: "1.0.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.9" |
| 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.1.11" | 87 | version: "2.1.11" |
| 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.3" |
| 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.3.3" | 108 | version: "8.3.3" |
| 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.1" |
| 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: "1.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.1" |
| 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+2" | 150 | version: "0.9.8+2" |
| 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.0" |
| 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.0" | 171 | version: "1.2.0" |
| 172 | charcode: | 172 | charcode: |
| 173 | dependency: transitive | 173 | dependency: transitive |
| 174 | description: | 174 | description: |
| 175 | name: charcode | 175 | name: charcode |
| 176 | - url: "https://pub.dartlang.org" | 176 | + url: "https://pub.flutter-io.cn" |
| 177 | source: hosted | 177 | source: hosted |
| 178 | version: "1.3.1" | 178 | version: "1.3.1" |
| 179 | checked_yaml: | 179 | checked_yaml: |
| 180 | dependency: transitive | 180 | dependency: transitive |
| 181 | description: | 181 | description: |
| 182 | name: checked_yaml | 182 | name: checked_yaml |
| 183 | - url: "https://pub.dartlang.org" | 183 | + url: "https://pub.flutter-io.cn" |
| 184 | source: hosted | 184 | source: hosted |
| 185 | version: "2.0.1" | 185 | version: "2.0.1" |
| 186 | chewie: | 186 | chewie: |
| 187 | dependency: "direct main" | 187 | dependency: "direct main" |
| 188 | description: | 188 | description: |
| 189 | name: chewie | 189 | name: chewie |
| 190 | - url: "https://pub.dartlang.org" | 190 | + url: "https://pub.flutter-io.cn" |
| 191 | source: hosted | 191 | source: hosted |
| 192 | version: "1.3.4" | 192 | version: "1.3.4" |
| 193 | clock: | 193 | clock: |
| 194 | dependency: transitive | 194 | dependency: transitive |
| 195 | description: | 195 | description: |
| 196 | name: clock | 196 | name: clock |
| 197 | - url: "https://pub.dartlang.org" | 197 | + url: "https://pub.flutter-io.cn" |
| 198 | source: hosted | 198 | source: hosted |
| 199 | version: "1.1.0" | 199 | version: "1.1.0" |
| 200 | code_builder: | 200 | code_builder: |
| 201 | dependency: transitive | 201 | dependency: transitive |
| 202 | description: | 202 | description: |
| 203 | name: code_builder | 203 | name: code_builder |
| 204 | - url: "https://pub.dartlang.org" | 204 | + url: "https://pub.flutter-io.cn" |
| 205 | source: hosted | 205 | source: hosted |
| 206 | version: "4.1.0" | 206 | version: "4.1.0" |
| 207 | collection: | 207 | collection: |
| 208 | dependency: transitive | 208 | dependency: transitive |
| 209 | description: | 209 | description: |
| 210 | name: collection | 210 | name: collection |
| 211 | - url: "https://pub.dartlang.org" | 211 | + url: "https://pub.flutter-io.cn" |
| 212 | source: hosted | 212 | source: hosted |
| 213 | version: "1.16.0" | 213 | version: "1.16.0" |
| 214 | common_utils: | 214 | common_utils: |
| 215 | dependency: "direct main" | 215 | dependency: "direct main" |
| 216 | description: | 216 | description: |
| 217 | name: common_utils | 217 | name: common_utils |
| 218 | - url: "https://pub.dartlang.org" | 218 | + url: "https://pub.flutter-io.cn" |
| 219 | source: hosted | 219 | source: hosted |
| 220 | version: "2.0.2" | 220 | version: "2.0.2" |
| 221 | convert: | 221 | convert: |
| 222 | dependency: transitive | 222 | dependency: transitive |
| 223 | description: | 223 | description: |
| 224 | name: convert | 224 | name: convert |
| 225 | - url: "https://pub.dartlang.org" | 225 | + url: "https://pub.flutter-io.cn" |
| 226 | source: hosted | 226 | source: hosted |
| 227 | version: "3.0.2" | 227 | version: "3.0.2" |
| 228 | coverage: | 228 | coverage: |
| 229 | dependency: transitive | 229 | dependency: transitive |
| 230 | description: | 230 | description: |
| 231 | name: coverage | 231 | name: coverage |
| 232 | - url: "https://pub.dartlang.org" | 232 | + url: "https://pub.flutter-io.cn" |
| 233 | source: hosted | 233 | source: hosted |
| 234 | version: "1.2.0" | 234 | version: "1.2.0" |
| 235 | cross_file: | 235 | cross_file: |
| 236 | dependency: transitive | 236 | dependency: transitive |
| 237 | description: | 237 | description: |
| 238 | name: cross_file | 238 | name: cross_file |
| 239 | - url: "https://pub.dartlang.org" | 239 | + url: "https://pub.flutter-io.cn" |
| 240 | source: hosted | 240 | source: hosted |
| 241 | version: "0.3.3+1" | 241 | version: "0.3.3+1" |
| 242 | crypto: | 242 | crypto: |
| 243 | dependency: transitive | 243 | dependency: transitive |
| 244 | description: | 244 | description: |
| 245 | name: crypto | 245 | name: crypto |
| 246 | - url: "https://pub.dartlang.org" | 246 | + url: "https://pub.flutter-io.cn" |
| 247 | source: hosted | 247 | source: hosted |
| 248 | version: "3.0.1" | 248 | version: "3.0.1" |
| 249 | csslib: | 249 | csslib: |
| 250 | dependency: transitive | 250 | dependency: transitive |
| 251 | description: | 251 | description: |
| 252 | name: csslib | 252 | name: csslib |
| 253 | - url: "https://pub.dartlang.org" | 253 | + url: "https://pub.flutter-io.cn" |
| 254 | source: hosted | 254 | source: hosted |
| 255 | version: "0.17.2" | 255 | version: "0.17.2" |
| 256 | cupertino_icons: | 256 | cupertino_icons: |
| 257 | dependency: "direct main" | 257 | dependency: "direct main" |
| 258 | description: | 258 | description: |
| 259 | name: cupertino_icons | 259 | name: cupertino_icons |
| 260 | - url: "https://pub.dartlang.org" | 260 | + url: "https://pub.flutter-io.cn" |
| 261 | source: hosted | 261 | source: hosted |
| 262 | version: "1.0.5" | 262 | version: "1.0.5" |
| 263 | dart_style: | 263 | dart_style: |
| 264 | dependency: transitive | 264 | dependency: transitive |
| 265 | description: | 265 | description: |
| 266 | name: dart_style | 266 | name: dart_style |
| 267 | - url: "https://pub.dartlang.org" | 267 | + url: "https://pub.flutter-io.cn" |
| 268 | source: hosted | 268 | source: hosted |
| 269 | version: "2.2.3" | 269 | version: "2.2.3" |
| 270 | decimal: | 270 | decimal: |
| 271 | dependency: "direct overridden" | 271 | dependency: "direct overridden" |
| 272 | description: | 272 | description: |
| 273 | name: decimal | 273 | name: decimal |
| 274 | - url: "https://pub.dartlang.org" | 274 | + url: "https://pub.flutter-io.cn" |
| 275 | source: hosted | 275 | source: hosted |
| 276 | version: "1.5.0" | 276 | version: "1.5.0" |
| 277 | device_info_plus: | 277 | device_info_plus: |
| 278 | dependency: "direct main" | 278 | dependency: "direct main" |
| 279 | description: | 279 | description: |
| 280 | name: device_info_plus | 280 | name: device_info_plus |
| 281 | - url: "https://pub.dartlang.org" | 281 | + url: "https://pub.flutter-io.cn" |
| 282 | source: hosted | 282 | source: hosted |
| 283 | version: "3.2.4" | 283 | version: "3.2.4" |
| 284 | device_info_plus_linux: | 284 | device_info_plus_linux: |
| 285 | dependency: transitive | 285 | dependency: transitive |
| 286 | description: | 286 | description: |
| 287 | name: device_info_plus_linux | 287 | name: device_info_plus_linux |
| 288 | - url: "https://pub.dartlang.org" | 288 | + url: "https://pub.flutter-io.cn" |
| 289 | source: hosted | 289 | source: hosted |
| 290 | version: "2.1.1" | 290 | version: "2.1.1" |
| 291 | device_info_plus_macos: | 291 | device_info_plus_macos: |
| 292 | dependency: transitive | 292 | dependency: transitive |
| 293 | description: | 293 | description: |
| 294 | name: device_info_plus_macos | 294 | name: device_info_plus_macos |
| 295 | - url: "https://pub.dartlang.org" | 295 | + url: "https://pub.flutter-io.cn" |
| 296 | source: hosted | 296 | source: hosted |
| 297 | version: "2.2.3" | 297 | version: "2.2.3" |
| 298 | device_info_plus_platform_interface: | 298 | device_info_plus_platform_interface: |
| 299 | dependency: transitive | 299 | dependency: transitive |
| 300 | description: | 300 | description: |
| 301 | name: device_info_plus_platform_interface | 301 | name: device_info_plus_platform_interface |
| 302 | - url: "https://pub.dartlang.org" | 302 | + url: "https://pub.flutter-io.cn" |
| 303 | source: hosted | 303 | source: hosted |
| 304 | version: "2.3.0+1" | 304 | version: "2.3.0+1" |
| 305 | device_info_plus_web: | 305 | device_info_plus_web: |
| 306 | dependency: transitive | 306 | dependency: transitive |
| 307 | description: | 307 | description: |
| 308 | name: device_info_plus_web | 308 | name: device_info_plus_web |
| 309 | - url: "https://pub.dartlang.org" | 309 | + url: "https://pub.flutter-io.cn" |
| 310 | source: hosted | 310 | source: hosted |
| 311 | version: "2.1.0" | 311 | version: "2.1.0" |
| 312 | device_info_plus_windows: | 312 | device_info_plus_windows: |
| 313 | dependency: transitive | 313 | dependency: transitive |
| 314 | description: | 314 | description: |
| 315 | name: device_info_plus_windows | 315 | name: device_info_plus_windows |
| 316 | - url: "https://pub.dartlang.org" | 316 | + url: "https://pub.flutter-io.cn" |
| 317 | source: hosted | 317 | source: hosted |
| 318 | version: "2.1.1" | 318 | version: "2.1.1" |
| 319 | dio: | 319 | dio: |
| 320 | dependency: "direct main" | 320 | dependency: "direct main" |
| 321 | description: | 321 | description: |
| 322 | name: dio | 322 | name: dio |
| 323 | - url: "https://pub.dartlang.org" | 323 | + url: "https://pub.flutter-io.cn" |
| 324 | source: hosted | 324 | source: hosted |
| 325 | version: "4.0.6" | 325 | version: "4.0.6" |
| 326 | email_validator: | 326 | email_validator: |
| 327 | dependency: "direct main" | 327 | dependency: "direct main" |
| 328 | description: | 328 | description: |
| 329 | name: email_validator | 329 | name: email_validator |
| 330 | - url: "https://pub.dartlang.org" | 330 | + url: "https://pub.flutter-io.cn" |
| 331 | source: hosted | 331 | source: hosted |
| 332 | version: "2.0.1" | 332 | version: "2.0.1" |
| 333 | event_bus: | 333 | event_bus: |
| 334 | dependency: "direct main" | 334 | dependency: "direct main" |
| 335 | description: | 335 | description: |
| 336 | name: event_bus | 336 | name: event_bus |
| 337 | - url: "https://pub.dartlang.org" | 337 | + url: "https://pub.flutter-io.cn" |
| 338 | source: hosted | 338 | source: hosted |
| 339 | version: "2.0.0" | 339 | version: "2.0.0" |
| 340 | fake_async: | 340 | fake_async: |
| 341 | dependency: transitive | 341 | dependency: transitive |
| 342 | description: | 342 | description: |
| 343 | name: fake_async | 343 | name: fake_async |
| 344 | - url: "https://pub.dartlang.org" | 344 | + url: "https://pub.flutter-io.cn" |
| 345 | source: hosted | 345 | source: hosted |
| 346 | version: "1.3.0" | 346 | version: "1.3.0" |
| 347 | ffi: | 347 | ffi: |
| 348 | dependency: transitive | 348 | dependency: transitive |
| 349 | description: | 349 | description: |
| 350 | name: ffi | 350 | name: ffi |
| 351 | - url: "https://pub.dartlang.org" | 351 | + url: "https://pub.flutter-io.cn" |
| 352 | source: hosted | 352 | source: hosted |
| 353 | version: "1.2.1" | 353 | version: "1.2.1" |
| 354 | fijkplayer: | 354 | fijkplayer: |
| 355 | dependency: "direct main" | 355 | dependency: "direct main" |
| 356 | description: | 356 | description: |
| 357 | name: fijkplayer | 357 | name: fijkplayer |
| 358 | - url: "https://pub.dartlang.org" | 358 | + url: "https://pub.flutter-io.cn" |
| 359 | source: hosted | 359 | source: hosted |
| 360 | version: "0.10.1" | 360 | version: "0.10.1" |
| 361 | file: | 361 | file: |
| 362 | dependency: transitive | 362 | dependency: transitive |
| 363 | description: | 363 | description: |
| 364 | name: file | 364 | name: file |
| 365 | - url: "https://pub.dartlang.org" | 365 | + url: "https://pub.flutter-io.cn" |
| 366 | source: hosted | 366 | source: hosted |
| 367 | version: "6.1.2" | 367 | version: "6.1.2" |
| 368 | fixnum: | 368 | fixnum: |
| 369 | dependency: transitive | 369 | dependency: transitive |
| 370 | description: | 370 | description: |
| 371 | name: fixnum | 371 | name: fixnum |
| 372 | - url: "https://pub.dartlang.org" | 372 | + url: "https://pub.flutter-io.cn" |
| 373 | source: hosted | 373 | source: hosted |
| 374 | version: "1.0.1" | 374 | version: "1.0.1" |
| 375 | fluro: | 375 | fluro: |
| 376 | dependency: "direct main" | 376 | dependency: "direct main" |
| 377 | description: | 377 | description: |
| 378 | name: fluro | 378 | name: fluro |
| 379 | - url: "https://pub.dartlang.org" | 379 | + url: "https://pub.flutter-io.cn" |
| 380 | source: hosted | 380 | source: hosted |
| 381 | version: "2.0.3" | 381 | version: "2.0.3" |
| 382 | flustars: | 382 | flustars: |
| 383 | dependency: "direct main" | 383 | dependency: "direct main" |
| 384 | description: | 384 | description: |
| 385 | name: flustars | 385 | name: flustars |
| 386 | - url: "https://pub.dartlang.org" | 386 | + url: "https://pub.flutter-io.cn" |
| 387 | source: hosted | 387 | source: hosted |
| 388 | version: "2.0.1" | 388 | version: "2.0.1" |
| 389 | flutter: | 389 | flutter: |
| ... | @@ -404,14 +404,14 @@ packages: | ... | @@ -404,14 +404,14 @@ packages: |
| 404 | dependency: transitive | 404 | dependency: transitive |
| 405 | description: | 405 | description: |
| 406 | name: flutter_blurhash | 406 | name: flutter_blurhash |
| 407 | - url: "https://pub.dartlang.org" | 407 | + url: "https://pub.flutter-io.cn" |
| 408 | source: hosted | 408 | source: hosted |
| 409 | version: "0.7.0" | 409 | version: "0.7.0" |
| 410 | flutter_cache_manager: | 410 | flutter_cache_manager: |
| 411 | dependency: transitive | 411 | dependency: transitive |
| 412 | description: | 412 | description: |
| 413 | name: flutter_cache_manager | 413 | name: flutter_cache_manager |
| 414 | - url: "https://pub.dartlang.org" | 414 | + url: "https://pub.flutter-io.cn" |
| 415 | source: hosted | 415 | source: hosted |
| 416 | version: "3.3.0" | 416 | version: "3.3.0" |
| 417 | flutter_driver: | 417 | flutter_driver: |
| ... | @@ -423,49 +423,49 @@ packages: | ... | @@ -423,49 +423,49 @@ packages: |
| 423 | dependency: "direct main" | 423 | dependency: "direct main" |
| 424 | description: | 424 | description: |
| 425 | name: flutter_easy_permission | 425 | name: flutter_easy_permission |
| 426 | - url: "https://pub.dartlang.org" | 426 | + url: "https://pub.flutter-io.cn" |
| 427 | source: hosted | 427 | source: hosted |
| 428 | version: "1.1.2" | 428 | version: "1.1.2" |
| 429 | flutter_facebook_auth: | 429 | flutter_facebook_auth: |
| 430 | dependency: "direct main" | 430 | dependency: "direct main" |
| 431 | description: | 431 | description: |
| 432 | name: flutter_facebook_auth | 432 | name: flutter_facebook_auth |
| 433 | - url: "https://pub.dartlang.org" | 433 | + url: "https://pub.flutter-io.cn" |
| 434 | source: hosted | 434 | source: hosted |
| 435 | version: "4.3.4+2" | 435 | version: "4.3.4+2" |
| 436 | flutter_facebook_auth_platform_interface: | 436 | flutter_facebook_auth_platform_interface: |
| 437 | dependency: transitive | 437 | dependency: transitive |
| 438 | description: | 438 | description: |
| 439 | name: flutter_facebook_auth_platform_interface | 439 | name: flutter_facebook_auth_platform_interface |
| 440 | - url: "https://pub.dartlang.org" | 440 | + url: "https://pub.flutter-io.cn" |
| 441 | source: hosted | 441 | source: hosted |
| 442 | version: "3.2.0" | 442 | version: "3.2.0" |
| 443 | flutter_facebook_auth_web: | 443 | flutter_facebook_auth_web: |
| 444 | dependency: transitive | 444 | dependency: transitive |
| 445 | description: | 445 | description: |
| 446 | name: flutter_facebook_auth_web | 446 | name: flutter_facebook_auth_web |
| 447 | - url: "https://pub.dartlang.org" | 447 | + url: "https://pub.flutter-io.cn" |
| 448 | source: hosted | 448 | source: hosted |
| 449 | version: "3.2.0" | 449 | version: "3.2.0" |
| 450 | flutter_inapp_purchase: | 450 | flutter_inapp_purchase: |
| 451 | dependency: "direct main" | 451 | dependency: "direct main" |
| 452 | description: | 452 | description: |
| 453 | name: flutter_inapp_purchase | 453 | name: flutter_inapp_purchase |
| 454 | - url: "https://pub.dartlang.org" | 454 | + url: "https://pub.flutter-io.cn" |
| 455 | source: hosted | 455 | source: hosted |
| 456 | version: "5.3.1" | 456 | version: "5.3.1" |
| 457 | flutter_launcher_icons: | 457 | flutter_launcher_icons: |
| 458 | dependency: "direct dev" | 458 | dependency: "direct dev" |
| 459 | description: | 459 | description: |
| 460 | name: flutter_launcher_icons | 460 | name: flutter_launcher_icons |
| 461 | - url: "https://pub.dartlang.org" | 461 | + url: "https://pub.flutter-io.cn" |
| 462 | source: hosted | 462 | source: hosted |
| 463 | version: "0.9.3" | 463 | version: "0.9.3" |
| 464 | flutter_lints: | 464 | flutter_lints: |
| 465 | dependency: "direct dev" | 465 | dependency: "direct dev" |
| 466 | description: | 466 | description: |
| 467 | name: flutter_lints | 467 | name: flutter_lints |
| 468 | - url: "https://pub.dartlang.org" | 468 | + url: "https://pub.flutter-io.cn" |
| 469 | source: hosted | 469 | source: hosted |
| 470 | version: "2.0.1" | 470 | version: "2.0.1" |
| 471 | flutter_localizations: | 471 | flutter_localizations: |
| ... | @@ -477,63 +477,63 @@ packages: | ... | @@ -477,63 +477,63 @@ packages: |
| 477 | dependency: "direct dev" | 477 | dependency: "direct dev" |
| 478 | description: | 478 | description: |
| 479 | name: flutter_native_splash | 479 | name: flutter_native_splash |
| 480 | - url: "https://pub.dartlang.org" | 480 | + url: "https://pub.flutter-io.cn" |
| 481 | source: hosted | 481 | source: hosted |
| 482 | version: "2.2.4" | 482 | version: "2.2.4" |
| 483 | flutter_plugin_android_lifecycle: | 483 | flutter_plugin_android_lifecycle: |
| 484 | dependency: transitive | 484 | dependency: transitive |
| 485 | description: | 485 | description: |
| 486 | name: flutter_plugin_android_lifecycle | 486 | name: flutter_plugin_android_lifecycle |
| 487 | - url: "https://pub.dartlang.org" | 487 | + url: "https://pub.flutter-io.cn" |
| 488 | source: hosted | 488 | source: hosted |
| 489 | version: "2.0.6" | 489 | version: "2.0.6" |
| 490 | flutter_signin_button: | 490 | flutter_signin_button: |
| 491 | dependency: "direct main" | 491 | dependency: "direct main" |
| 492 | description: | 492 | description: |
| 493 | name: flutter_signin_button | 493 | name: flutter_signin_button |
| 494 | - url: "https://pub.dartlang.org" | 494 | + url: "https://pub.flutter-io.cn" |
| 495 | source: hosted | 495 | source: hosted |
| 496 | version: "2.0.0" | 496 | version: "2.0.0" |
| 497 | flutter_slidable: | 497 | flutter_slidable: |
| 498 | dependency: "direct main" | 498 | dependency: "direct main" |
| 499 | description: | 499 | description: |
| 500 | name: flutter_slidable | 500 | name: flutter_slidable |
| 501 | - url: "https://pub.dartlang.org" | 501 | + url: "https://pub.flutter-io.cn" |
| 502 | source: hosted | 502 | source: hosted |
| 503 | version: "1.3.0" | 503 | version: "1.3.0" |
| 504 | flutter_sound: | 504 | flutter_sound: |
| 505 | dependency: "direct main" | 505 | dependency: "direct main" |
| 506 | description: | 506 | description: |
| 507 | name: flutter_sound | 507 | name: flutter_sound |
| 508 | - url: "https://pub.dartlang.org" | 508 | + url: "https://pub.flutter-io.cn" |
| 509 | source: hosted | 509 | source: hosted |
| 510 | version: "9.2.13" | 510 | version: "9.2.13" |
| 511 | flutter_sound_platform_interface: | 511 | flutter_sound_platform_interface: |
| 512 | dependency: transitive | 512 | dependency: transitive |
| 513 | description: | 513 | description: |
| 514 | name: flutter_sound_platform_interface | 514 | name: flutter_sound_platform_interface |
| 515 | - url: "https://pub.dartlang.org" | 515 | + url: "https://pub.flutter-io.cn" |
| 516 | source: hosted | 516 | source: hosted |
| 517 | version: "9.2.13" | 517 | version: "9.2.13" |
| 518 | flutter_sound_web: | 518 | flutter_sound_web: |
| 519 | dependency: transitive | 519 | dependency: transitive |
| 520 | description: | 520 | description: |
| 521 | name: flutter_sound_web | 521 | name: flutter_sound_web |
| 522 | - url: "https://pub.dartlang.org" | 522 | + url: "https://pub.flutter-io.cn" |
| 523 | source: hosted | 523 | source: hosted |
| 524 | version: "9.2.13" | 524 | version: "9.2.13" |
| 525 | flutter_spinkit: | 525 | flutter_spinkit: |
| 526 | dependency: "direct main" | 526 | dependency: "direct main" |
| 527 | description: | 527 | description: |
| 528 | name: flutter_spinkit | 528 | name: flutter_spinkit |
| 529 | - url: "https://pub.dartlang.org" | 529 | + url: "https://pub.flutter-io.cn" |
| 530 | source: hosted | 530 | source: hosted |
| 531 | version: "5.1.0" | 531 | version: "5.1.0" |
| 532 | flutter_swiper_null_safety: | 532 | flutter_swiper_null_safety: |
| 533 | dependency: "direct main" | 533 | dependency: "direct main" |
| 534 | description: | 534 | description: |
| 535 | name: flutter_swiper_null_safety | 535 | name: flutter_swiper_null_safety |
| 536 | - url: "https://pub.dartlang.org" | 536 | + url: "https://pub.flutter-io.cn" |
| 537 | source: hosted | 537 | source: hosted |
| 538 | version: "1.0.2" | 538 | version: "1.0.2" |
| 539 | flutter_test: | 539 | flutter_test: |
| ... | @@ -550,14 +550,14 @@ packages: | ... | @@ -550,14 +550,14 @@ packages: |
| 550 | dependency: transitive | 550 | dependency: transitive |
| 551 | description: | 551 | description: |
| 552 | name: font_awesome_flutter | 552 | name: font_awesome_flutter |
| 553 | - url: "https://pub.dartlang.org" | 553 | + url: "https://pub.flutter-io.cn" |
| 554 | source: hosted | 554 | source: hosted |
| 555 | version: "9.2.0" | 555 | version: "9.2.0" |
| 556 | frontend_server_client: | 556 | frontend_server_client: |
| 557 | dependency: transitive | 557 | dependency: transitive |
| 558 | description: | 558 | description: |
| 559 | name: frontend_server_client | 559 | name: frontend_server_client |
| 560 | - url: "https://pub.dartlang.org" | 560 | + url: "https://pub.flutter-io.cn" |
| 561 | source: hosted | 561 | source: hosted |
| 562 | version: "2.1.3" | 562 | version: "2.1.3" |
| 563 | fuchsia_remote_debug_protocol: | 563 | fuchsia_remote_debug_protocol: |
| ... | @@ -569,126 +569,126 @@ packages: | ... | @@ -569,126 +569,126 @@ packages: |
| 569 | dependency: "direct main" | 569 | dependency: "direct main" |
| 570 | description: | 570 | description: |
| 571 | name: getwidget | 571 | name: getwidget |
| 572 | - url: "https://pub.dartlang.org" | 572 | + url: "https://pub.flutter-io.cn" |
| 573 | source: hosted | 573 | source: hosted |
| 574 | version: "2.1.1" | 574 | version: "2.1.1" |
| 575 | glob: | 575 | glob: |
| 576 | dependency: transitive | 576 | dependency: transitive |
| 577 | description: | 577 | description: |
| 578 | name: glob | 578 | name: glob |
| 579 | - url: "https://pub.dartlang.org" | 579 | + url: "https://pub.flutter-io.cn" |
| 580 | source: hosted | 580 | source: hosted |
| 581 | version: "2.1.0" | 581 | version: "2.1.0" |
| 582 | google_fonts: | 582 | google_fonts: |
| 583 | dependency: "direct main" | 583 | dependency: "direct main" |
| 584 | description: | 584 | description: |
| 585 | name: google_fonts | 585 | name: google_fonts |
| 586 | - url: "https://pub.dartlang.org" | 586 | + url: "https://pub.flutter-io.cn" |
| 587 | source: hosted | 587 | source: hosted |
| 588 | version: "3.0.1" | 588 | version: "3.0.1" |
| 589 | graphs: | 589 | graphs: |
| 590 | dependency: transitive | 590 | dependency: transitive |
| 591 | description: | 591 | description: |
| 592 | name: graphs | 592 | name: graphs |
| 593 | - url: "https://pub.dartlang.org" | 593 | + url: "https://pub.flutter-io.cn" |
| 594 | source: hosted | 594 | source: hosted |
| 595 | version: "2.1.0" | 595 | version: "2.1.0" |
| 596 | html: | 596 | html: |
| 597 | dependency: transitive | 597 | dependency: transitive |
| 598 | description: | 598 | description: |
| 599 | name: html | 599 | name: html |
| 600 | - url: "https://pub.dartlang.org" | 600 | + url: "https://pub.flutter-io.cn" |
| 601 | source: hosted | 601 | source: hosted |
| 602 | version: "0.15.0" | 602 | version: "0.15.0" |
| 603 | http: | 603 | http: |
| 604 | dependency: transitive | 604 | dependency: transitive |
| 605 | description: | 605 | description: |
| 606 | name: http | 606 | name: http |
| 607 | - url: "https://pub.dartlang.org" | 607 | + url: "https://pub.flutter-io.cn" |
| 608 | source: hosted | 608 | source: hosted |
| 609 | version: "0.13.4" | 609 | version: "0.13.4" |
| 610 | http_multi_server: | 610 | http_multi_server: |
| 611 | dependency: transitive | 611 | dependency: transitive |
| 612 | description: | 612 | description: |
| 613 | name: http_multi_server | 613 | name: http_multi_server |
| 614 | - url: "https://pub.dartlang.org" | 614 | + url: "https://pub.flutter-io.cn" |
| 615 | source: hosted | 615 | source: hosted |
| 616 | version: "3.2.1" | 616 | version: "3.2.1" |
| 617 | http_parser: | 617 | http_parser: |
| 618 | dependency: transitive | 618 | dependency: transitive |
| 619 | description: | 619 | description: |
| 620 | name: http_parser | 620 | name: http_parser |
| 621 | - url: "https://pub.dartlang.org" | 621 | + url: "https://pub.flutter-io.cn" |
| 622 | source: hosted | 622 | source: hosted |
| 623 | version: "4.0.1" | 623 | version: "4.0.1" |
| 624 | image: | 624 | image: |
| 625 | dependency: transitive | 625 | dependency: transitive |
| 626 | description: | 626 | description: |
| 627 | name: image | 627 | name: image |
| 628 | - url: "https://pub.dartlang.org" | 628 | + url: "https://pub.flutter-io.cn" |
| 629 | source: hosted | 629 | source: hosted |
| 630 | version: "3.2.0" | 630 | version: "3.2.0" |
| 631 | image_cropper: | 631 | image_cropper: |
| 632 | dependency: "direct main" | 632 | dependency: "direct main" |
| 633 | description: | 633 | description: |
| 634 | name: image_cropper | 634 | name: image_cropper |
| 635 | - url: "https://pub.dartlang.org" | 635 | + url: "https://pub.flutter-io.cn" |
| 636 | source: hosted | 636 | source: hosted |
| 637 | version: "2.0.3" | 637 | version: "2.0.3" |
| 638 | image_cropper_for_web: | 638 | image_cropper_for_web: |
| 639 | dependency: transitive | 639 | dependency: transitive |
| 640 | description: | 640 | description: |
| 641 | name: image_cropper_for_web | 641 | name: image_cropper_for_web |
| 642 | - url: "https://pub.dartlang.org" | 642 | + url: "https://pub.flutter-io.cn" |
| 643 | source: hosted | 643 | source: hosted |
| 644 | version: "0.0.4" | 644 | version: "0.0.4" |
| 645 | image_cropper_platform_interface: | 645 | image_cropper_platform_interface: |
| 646 | dependency: transitive | 646 | dependency: transitive |
| 647 | description: | 647 | description: |
| 648 | name: image_cropper_platform_interface | 648 | name: image_cropper_platform_interface |
| 649 | - url: "https://pub.dartlang.org" | 649 | + url: "https://pub.flutter-io.cn" |
| 650 | source: hosted | 650 | source: hosted |
| 651 | version: "2.0.0" | 651 | version: "2.0.0" |
| 652 | image_gallery_saver: | 652 | image_gallery_saver: |
| 653 | dependency: "direct main" | 653 | dependency: "direct main" |
| 654 | description: | 654 | description: |
| 655 | name: image_gallery_saver | 655 | name: image_gallery_saver |
| 656 | - url: "https://pub.dartlang.org" | 656 | + url: "https://pub.flutter-io.cn" |
| 657 | source: hosted | 657 | source: hosted |
| 658 | version: "1.7.1" | 658 | version: "1.7.1" |
| 659 | image_picker: | 659 | image_picker: |
| 660 | dependency: "direct main" | 660 | dependency: "direct main" |
| 661 | description: | 661 | description: |
| 662 | name: image_picker | 662 | name: image_picker |
| 663 | - url: "https://pub.dartlang.org" | 663 | + url: "https://pub.flutter-io.cn" |
| 664 | source: hosted | 664 | source: hosted |
| 665 | version: "0.8.5+3" | 665 | version: "0.8.5+3" |
| 666 | image_picker_android: | 666 | image_picker_android: |
| 667 | dependency: transitive | 667 | dependency: transitive |
| 668 | description: | 668 | description: |
| 669 | name: image_picker_android | 669 | name: image_picker_android |
| 670 | - url: "https://pub.dartlang.org" | 670 | + url: "https://pub.flutter-io.cn" |
| 671 | source: hosted | 671 | source: hosted |
| 672 | version: "0.8.5+1" | 672 | version: "0.8.5+1" |
| 673 | image_picker_for_web: | 673 | image_picker_for_web: |
| 674 | dependency: transitive | 674 | dependency: transitive |
| 675 | description: | 675 | description: |
| 676 | name: image_picker_for_web | 676 | name: image_picker_for_web |
| 677 | - url: "https://pub.dartlang.org" | 677 | + url: "https://pub.flutter-io.cn" |
| 678 | source: hosted | 678 | source: hosted |
| 679 | version: "2.1.8" | 679 | version: "2.1.8" |
| 680 | image_picker_ios: | 680 | image_picker_ios: |
| 681 | dependency: transitive | 681 | dependency: transitive |
| 682 | description: | 682 | description: |
| 683 | name: image_picker_ios | 683 | name: image_picker_ios |
| 684 | - url: "https://pub.dartlang.org" | 684 | + url: "https://pub.flutter-io.cn" |
| 685 | source: hosted | 685 | source: hosted |
| 686 | version: "0.8.5+5" | 686 | version: "0.8.5+5" |
| 687 | image_picker_platform_interface: | 687 | image_picker_platform_interface: |
| 688 | dependency: transitive | 688 | dependency: transitive |
| 689 | description: | 689 | description: |
| 690 | name: image_picker_platform_interface | 690 | name: image_picker_platform_interface |
| 691 | - url: "https://pub.dartlang.org" | 691 | + url: "https://pub.flutter-io.cn" |
| 692 | source: hosted | 692 | source: hosted |
| 693 | version: "2.5.0" | 693 | version: "2.5.0" |
| 694 | integration_test: | 694 | integration_test: |
| ... | @@ -700,511 +700,511 @@ packages: | ... | @@ -700,511 +700,511 @@ packages: |
| 700 | dependency: "direct main" | 700 | dependency: "direct main" |
| 701 | description: | 701 | description: |
| 702 | name: intl | 702 | name: intl |
| 703 | - url: "https://pub.dartlang.org" | 703 | + url: "https://pub.flutter-io.cn" |
| 704 | source: hosted | 704 | source: hosted |
| 705 | version: "0.17.0" | 705 | version: "0.17.0" |
| 706 | io: | 706 | io: |
| 707 | dependency: transitive | 707 | dependency: transitive |
| 708 | description: | 708 | description: |
| 709 | name: io | 709 | name: io |
| 710 | - url: "https://pub.dartlang.org" | 710 | + url: "https://pub.flutter-io.cn" |
| 711 | source: hosted | 711 | source: hosted |
| 712 | version: "1.0.3" | 712 | version: "1.0.3" |
| 713 | jpush_flutter: | 713 | jpush_flutter: |
| 714 | dependency: "direct main" | 714 | dependency: "direct main" |
| 715 | description: | 715 | description: |
| 716 | name: jpush_flutter | 716 | name: jpush_flutter |
| 717 | - url: "https://pub.dartlang.org" | 717 | + url: "https://pub.flutter-io.cn" |
| 718 | source: hosted | 718 | source: hosted |
| 719 | version: "2.3.4" | 719 | version: "2.3.4" |
| 720 | js: | 720 | js: |
| 721 | dependency: transitive | 721 | dependency: transitive |
| 722 | description: | 722 | description: |
| 723 | name: js | 723 | name: js |
| 724 | - url: "https://pub.dartlang.org" | 724 | + url: "https://pub.flutter-io.cn" |
| 725 | source: hosted | 725 | source: hosted |
| 726 | version: "0.6.4" | 726 | version: "0.6.4" |
| 727 | json_annotation: | 727 | json_annotation: |
| 728 | dependency: "direct main" | 728 | dependency: "direct main" |
| 729 | description: | 729 | description: |
| 730 | name: json_annotation | 730 | name: json_annotation |
| 731 | - url: "https://pub.dartlang.org" | 731 | + url: "https://pub.flutter-io.cn" |
| 732 | source: hosted | 732 | source: hosted |
| 733 | version: "4.5.0" | 733 | version: "4.5.0" |
| 734 | json_serializable: | 734 | json_serializable: |
| 735 | dependency: "direct dev" | 735 | dependency: "direct dev" |
| 736 | description: | 736 | description: |
| 737 | name: json_serializable | 737 | name: json_serializable |
| 738 | - url: "https://pub.dartlang.org" | 738 | + url: "https://pub.flutter-io.cn" |
| 739 | source: hosted | 739 | source: hosted |
| 740 | version: "6.2.0" | 740 | version: "6.2.0" |
| 741 | keyboard_actions: | 741 | keyboard_actions: |
| 742 | dependency: "direct main" | 742 | dependency: "direct main" |
| 743 | description: | 743 | description: |
| 744 | name: keyboard_actions | 744 | name: keyboard_actions |
| 745 | - url: "https://pub.dartlang.org" | 745 | + url: "https://pub.flutter-io.cn" |
| 746 | source: hosted | 746 | source: hosted |
| 747 | version: "4.0.1" | 747 | version: "4.0.1" |
| 748 | lint: | 748 | lint: |
| 749 | dependency: transitive | 749 | dependency: transitive |
| 750 | description: | 750 | description: |
| 751 | name: lint | 751 | name: lint |
| 752 | - url: "https://pub.dartlang.org" | 752 | + url: "https://pub.flutter-io.cn" |
| 753 | source: hosted | 753 | source: hosted |
| 754 | version: "1.8.2" | 754 | version: "1.8.2" |
| 755 | lints: | 755 | lints: |
| 756 | dependency: transitive | 756 | dependency: transitive |
| 757 | description: | 757 | description: |
| 758 | name: lints | 758 | name: lints |
| 759 | - url: "https://pub.dartlang.org" | 759 | + url: "https://pub.flutter-io.cn" |
| 760 | source: hosted | 760 | source: hosted |
| 761 | version: "2.0.0" | 761 | version: "2.0.0" |
| 762 | logger: | 762 | logger: |
| 763 | dependency: transitive | 763 | dependency: transitive |
| 764 | description: | 764 | description: |
| 765 | name: logger | 765 | name: logger |
| 766 | - url: "https://pub.dartlang.org" | 766 | + url: "https://pub.flutter-io.cn" |
| 767 | source: hosted | 767 | source: hosted |
| 768 | version: "1.1.0" | 768 | version: "1.1.0" |
| 769 | logging: | 769 | logging: |
| 770 | dependency: transitive | 770 | dependency: transitive |
| 771 | description: | 771 | description: |
| 772 | name: logging | 772 | name: logging |
| 773 | - url: "https://pub.dartlang.org" | 773 | + url: "https://pub.flutter-io.cn" |
| 774 | source: hosted | 774 | source: hosted |
| 775 | version: "1.0.2" | 775 | version: "1.0.2" |
| 776 | matcher: | 776 | matcher: |
| 777 | dependency: transitive | 777 | dependency: transitive |
| 778 | description: | 778 | description: |
| 779 | name: matcher | 779 | name: matcher |
| 780 | - url: "https://pub.dartlang.org" | 780 | + url: "https://pub.flutter-io.cn" |
| 781 | source: hosted | 781 | source: hosted |
| 782 | version: "0.12.11" | 782 | version: "0.12.11" |
| 783 | material_color_utilities: | 783 | material_color_utilities: |
| 784 | dependency: transitive | 784 | dependency: transitive |
| 785 | description: | 785 | description: |
| 786 | name: material_color_utilities | 786 | name: material_color_utilities |
| 787 | - url: "https://pub.dartlang.org" | 787 | + url: "https://pub.flutter-io.cn" |
| 788 | source: hosted | 788 | source: hosted |
| 789 | version: "0.1.4" | 789 | version: "0.1.4" |
| 790 | meta: | 790 | meta: |
| 791 | dependency: transitive | 791 | dependency: transitive |
| 792 | description: | 792 | description: |
| 793 | name: meta | 793 | name: meta |
| 794 | - url: "https://pub.dartlang.org" | 794 | + url: "https://pub.flutter-io.cn" |
| 795 | source: hosted | 795 | source: hosted |
| 796 | version: "1.7.0" | 796 | version: "1.7.0" |
| 797 | mime: | 797 | mime: |
| 798 | dependency: transitive | 798 | dependency: transitive |
| 799 | description: | 799 | description: |
| 800 | name: mime | 800 | name: mime |
| 801 | - url: "https://pub.dartlang.org" | 801 | + url: "https://pub.flutter-io.cn" |
| 802 | source: hosted | 802 | source: hosted |
| 803 | version: "1.0.2" | 803 | version: "1.0.2" |
| 804 | nested: | 804 | nested: |
| 805 | dependency: transitive | 805 | dependency: transitive |
| 806 | description: | 806 | description: |
| 807 | name: nested | 807 | name: nested |
| 808 | - url: "https://pub.dartlang.org" | 808 | + url: "https://pub.flutter-io.cn" |
| 809 | source: hosted | 809 | source: hosted |
| 810 | version: "1.0.0" | 810 | version: "1.0.0" |
| 811 | node_preamble: | 811 | node_preamble: |
| 812 | dependency: transitive | 812 | dependency: transitive |
| 813 | description: | 813 | description: |
| 814 | name: node_preamble | 814 | name: node_preamble |
| 815 | - url: "https://pub.dartlang.org" | 815 | + url: "https://pub.flutter-io.cn" |
| 816 | source: hosted | 816 | source: hosted |
| 817 | version: "2.0.1" | 817 | version: "2.0.1" |
| 818 | octo_image: | 818 | octo_image: |
| 819 | dependency: transitive | 819 | dependency: transitive |
| 820 | description: | 820 | description: |
| 821 | name: octo_image | 821 | name: octo_image |
| 822 | - url: "https://pub.dartlang.org" | 822 | + url: "https://pub.flutter-io.cn" |
| 823 | source: hosted | 823 | source: hosted |
| 824 | version: "1.0.2" | 824 | version: "1.0.2" |
| 825 | oktoast: | 825 | oktoast: |
| 826 | dependency: "direct main" | 826 | dependency: "direct main" |
| 827 | description: | 827 | description: |
| 828 | name: oktoast | 828 | name: oktoast |
| 829 | - url: "https://pub.dartlang.org" | 829 | + url: "https://pub.flutter-io.cn" |
| 830 | source: hosted | 830 | source: hosted |
| 831 | version: "3.2.0" | 831 | version: "3.2.0" |
| 832 | package_config: | 832 | package_config: |
| 833 | dependency: transitive | 833 | dependency: transitive |
| 834 | description: | 834 | description: |
| 835 | name: package_config | 835 | name: package_config |
| 836 | - url: "https://pub.dartlang.org" | 836 | + url: "https://pub.flutter-io.cn" |
| 837 | source: hosted | 837 | source: hosted |
| 838 | version: "2.1.0" | 838 | version: "2.1.0" |
| 839 | path: | 839 | path: |
| 840 | dependency: transitive | 840 | dependency: transitive |
| 841 | description: | 841 | description: |
| 842 | name: path | 842 | name: path |
| 843 | - url: "https://pub.dartlang.org" | 843 | + url: "https://pub.flutter-io.cn" |
| 844 | source: hosted | 844 | source: hosted |
| 845 | version: "1.8.1" | 845 | version: "1.8.1" |
| 846 | path_provider: | 846 | path_provider: |
| 847 | dependency: "direct main" | 847 | dependency: "direct main" |
| 848 | description: | 848 | description: |
| 849 | name: path_provider | 849 | name: path_provider |
| 850 | - url: "https://pub.dartlang.org" | 850 | + url: "https://pub.flutter-io.cn" |
| 851 | source: hosted | 851 | source: hosted |
| 852 | version: "2.0.11" | 852 | version: "2.0.11" |
| 853 | path_provider_android: | 853 | path_provider_android: |
| 854 | dependency: transitive | 854 | dependency: transitive |
| 855 | description: | 855 | description: |
| 856 | name: path_provider_android | 856 | name: path_provider_android |
| 857 | - url: "https://pub.dartlang.org" | 857 | + url: "https://pub.flutter-io.cn" |
| 858 | source: hosted | 858 | source: hosted |
| 859 | version: "2.0.16" | 859 | version: "2.0.16" |
| 860 | path_provider_ios: | 860 | path_provider_ios: |
| 861 | dependency: transitive | 861 | dependency: transitive |
| 862 | description: | 862 | description: |
| 863 | name: path_provider_ios | 863 | name: path_provider_ios |
| 864 | - url: "https://pub.dartlang.org" | 864 | + url: "https://pub.flutter-io.cn" |
| 865 | source: hosted | 865 | source: hosted |
| 866 | version: "2.0.10" | 866 | version: "2.0.10" |
| 867 | path_provider_linux: | 867 | path_provider_linux: |
| 868 | dependency: transitive | 868 | dependency: transitive |
| 869 | description: | 869 | description: |
| 870 | name: path_provider_linux | 870 | name: path_provider_linux |
| 871 | - url: "https://pub.dartlang.org" | 871 | + url: "https://pub.flutter-io.cn" |
| 872 | source: hosted | 872 | source: hosted |
| 873 | version: "2.1.7" | 873 | version: "2.1.7" |
| 874 | path_provider_macos: | 874 | path_provider_macos: |
| 875 | dependency: transitive | 875 | dependency: transitive |
| 876 | description: | 876 | description: |
| 877 | name: path_provider_macos | 877 | name: path_provider_macos |
| 878 | - url: "https://pub.dartlang.org" | 878 | + url: "https://pub.flutter-io.cn" |
| 879 | source: hosted | 879 | source: hosted |
| 880 | version: "2.0.6" | 880 | version: "2.0.6" |
| 881 | path_provider_platform_interface: | 881 | path_provider_platform_interface: |
| 882 | dependency: transitive | 882 | dependency: transitive |
| 883 | description: | 883 | description: |
| 884 | name: path_provider_platform_interface | 884 | name: path_provider_platform_interface |
| 885 | - url: "https://pub.dartlang.org" | 885 | + url: "https://pub.flutter-io.cn" |
| 886 | source: hosted | 886 | source: hosted |
| 887 | version: "2.0.4" | 887 | version: "2.0.4" |
| 888 | path_provider_windows: | 888 | path_provider_windows: |
| 889 | dependency: transitive | 889 | dependency: transitive |
| 890 | description: | 890 | description: |
| 891 | name: path_provider_windows | 891 | name: path_provider_windows |
| 892 | - url: "https://pub.dartlang.org" | 892 | + url: "https://pub.flutter-io.cn" |
| 893 | source: hosted | 893 | source: hosted |
| 894 | version: "2.0.7" | 894 | version: "2.0.7" |
| 895 | pausable_timer: | 895 | pausable_timer: |
| 896 | dependency: "direct main" | 896 | dependency: "direct main" |
| 897 | description: | 897 | description: |
| 898 | name: pausable_timer | 898 | name: pausable_timer |
| 899 | - url: "https://pub.dartlang.org" | 899 | + url: "https://pub.flutter-io.cn" |
| 900 | source: hosted | 900 | source: hosted |
| 901 | version: "1.0.0+5" | 901 | version: "1.0.0+5" |
| 902 | pedantic: | 902 | pedantic: |
| 903 | dependency: transitive | 903 | dependency: transitive |
| 904 | description: | 904 | description: |
| 905 | name: pedantic | 905 | name: pedantic |
| 906 | - url: "https://pub.dartlang.org" | 906 | + url: "https://pub.flutter-io.cn" |
| 907 | source: hosted | 907 | source: hosted |
| 908 | version: "1.11.1" | 908 | version: "1.11.1" |
| 909 | permission_handler: | 909 | permission_handler: |
| 910 | dependency: "direct dev" | 910 | dependency: "direct dev" |
| 911 | description: | 911 | description: |
| 912 | name: permission_handler | 912 | name: permission_handler |
| 913 | - url: "https://pub.dartlang.org" | 913 | + url: "https://pub.flutter-io.cn" |
| 914 | source: hosted | 914 | source: hosted |
| 915 | version: "9.2.0" | 915 | version: "9.2.0" |
| 916 | permission_handler_android: | 916 | permission_handler_android: |
| 917 | dependency: transitive | 917 | dependency: transitive |
| 918 | description: | 918 | description: |
| 919 | name: permission_handler_android | 919 | name: permission_handler_android |
| 920 | - url: "https://pub.dartlang.org" | 920 | + url: "https://pub.flutter-io.cn" |
| 921 | source: hosted | 921 | source: hosted |
| 922 | version: "9.0.2+1" | 922 | version: "9.0.2+1" |
| 923 | permission_handler_apple: | 923 | permission_handler_apple: |
| 924 | dependency: transitive | 924 | dependency: transitive |
| 925 | description: | 925 | description: |
| 926 | name: permission_handler_apple | 926 | name: permission_handler_apple |
| 927 | - url: "https://pub.dartlang.org" | 927 | + url: "https://pub.flutter-io.cn" |
| 928 | source: hosted | 928 | source: hosted |
| 929 | version: "9.0.4" | 929 | version: "9.0.4" |
| 930 | permission_handler_platform_interface: | 930 | permission_handler_platform_interface: |
| 931 | dependency: transitive | 931 | dependency: transitive |
| 932 | description: | 932 | description: |
| 933 | name: permission_handler_platform_interface | 933 | name: permission_handler_platform_interface |
| 934 | - url: "https://pub.dartlang.org" | 934 | + url: "https://pub.flutter-io.cn" |
| 935 | source: hosted | 935 | source: hosted |
| 936 | version: "3.7.0" | 936 | version: "3.7.0" |
| 937 | permission_handler_windows: | 937 | permission_handler_windows: |
| 938 | dependency: transitive | 938 | dependency: transitive |
| 939 | description: | 939 | description: |
| 940 | name: permission_handler_windows | 940 | name: permission_handler_windows |
| 941 | - url: "https://pub.dartlang.org" | 941 | + url: "https://pub.flutter-io.cn" |
| 942 | source: hosted | 942 | source: hosted |
| 943 | version: "0.1.0" | 943 | version: "0.1.0" |
| 944 | petitparser: | 944 | petitparser: |
| 945 | dependency: transitive | 945 | dependency: transitive |
| 946 | description: | 946 | description: |
| 947 | name: petitparser | 947 | name: petitparser |
| 948 | - url: "https://pub.dartlang.org" | 948 | + url: "https://pub.flutter-io.cn" |
| 949 | source: hosted | 949 | source: hosted |
| 950 | version: "5.0.0" | 950 | version: "5.0.0" |
| 951 | platform: | 951 | platform: |
| 952 | dependency: transitive | 952 | dependency: transitive |
| 953 | description: | 953 | description: |
| 954 | name: platform | 954 | name: platform |
| 955 | - url: "https://pub.dartlang.org" | 955 | + url: "https://pub.flutter-io.cn" |
| 956 | source: hosted | 956 | source: hosted |
| 957 | version: "3.1.0" | 957 | version: "3.1.0" |
| 958 | plugin_platform_interface: | 958 | plugin_platform_interface: |
| 959 | dependency: transitive | 959 | dependency: transitive |
| 960 | description: | 960 | description: |
| 961 | name: plugin_platform_interface | 961 | name: plugin_platform_interface |
| 962 | - url: "https://pub.dartlang.org" | 962 | + url: "https://pub.flutter-io.cn" |
| 963 | source: hosted | 963 | source: hosted |
| 964 | version: "2.1.2" | 964 | version: "2.1.2" |
| 965 | pool: | 965 | pool: |
| 966 | dependency: transitive | 966 | dependency: transitive |
| 967 | description: | 967 | description: |
| 968 | name: pool | 968 | name: pool |
| 969 | - url: "https://pub.dartlang.org" | 969 | + url: "https://pub.flutter-io.cn" |
| 970 | source: hosted | 970 | source: hosted |
| 971 | version: "1.5.1" | 971 | version: "1.5.1" |
| 972 | process: | 972 | process: |
| 973 | dependency: transitive | 973 | dependency: transitive |
| 974 | description: | 974 | description: |
| 975 | name: process | 975 | name: process |
| 976 | - url: "https://pub.dartlang.org" | 976 | + url: "https://pub.flutter-io.cn" |
| 977 | source: hosted | 977 | source: hosted |
| 978 | version: "4.2.4" | 978 | version: "4.2.4" |
| 979 | provider: | 979 | provider: |
| 980 | dependency: "direct main" | 980 | dependency: "direct main" |
| 981 | description: | 981 | description: |
| 982 | name: provider | 982 | name: provider |
| 983 | - url: "https://pub.dartlang.org" | 983 | + url: "https://pub.flutter-io.cn" |
| 984 | source: hosted | 984 | source: hosted |
| 985 | version: "6.0.3" | 985 | version: "6.0.3" |
| 986 | pub_semver: | 986 | pub_semver: |
| 987 | dependency: transitive | 987 | dependency: transitive |
| 988 | description: | 988 | description: |
| 989 | name: pub_semver | 989 | name: pub_semver |
| 990 | - url: "https://pub.dartlang.org" | 990 | + url: "https://pub.flutter-io.cn" |
| 991 | source: hosted | 991 | source: hosted |
| 992 | version: "2.1.1" | 992 | version: "2.1.1" |
| 993 | pubspec_parse: | 993 | pubspec_parse: |
| 994 | dependency: transitive | 994 | dependency: transitive |
| 995 | description: | 995 | description: |
| 996 | name: pubspec_parse | 996 | name: pubspec_parse |
| 997 | - url: "https://pub.dartlang.org" | 997 | + url: "https://pub.flutter-io.cn" |
| 998 | source: hosted | 998 | source: hosted |
| 999 | version: "1.2.0" | 999 | version: "1.2.0" |
| 1000 | quick_actions: | 1000 | quick_actions: |
| 1001 | dependency: "direct main" | 1001 | dependency: "direct main" |
| 1002 | description: | 1002 | description: |
| 1003 | name: quick_actions | 1003 | name: quick_actions |
| 1004 | - url: "https://pub.dartlang.org" | 1004 | + url: "https://pub.flutter-io.cn" |
| 1005 | source: hosted | 1005 | source: hosted |
| 1006 | version: "0.6.0+11" | 1006 | version: "0.6.0+11" |
| 1007 | quick_actions_android: | 1007 | quick_actions_android: |
| 1008 | dependency: transitive | 1008 | dependency: transitive |
| 1009 | description: | 1009 | description: |
| 1010 | name: quick_actions_android | 1010 | name: quick_actions_android |
| 1011 | - url: "https://pub.dartlang.org" | 1011 | + url: "https://pub.flutter-io.cn" |
| 1012 | source: hosted | 1012 | source: hosted |
| 1013 | version: "0.6.0+11" | 1013 | version: "0.6.0+11" |
| 1014 | quick_actions_ios: | 1014 | quick_actions_ios: |
| 1015 | dependency: transitive | 1015 | dependency: transitive |
| 1016 | description: | 1016 | description: |
| 1017 | name: quick_actions_ios | 1017 | name: quick_actions_ios |
| 1018 | - url: "https://pub.dartlang.org" | 1018 | + url: "https://pub.flutter-io.cn" |
| 1019 | source: hosted | 1019 | source: hosted |
| 1020 | version: "0.6.0+11" | 1020 | version: "0.6.0+11" |
| 1021 | quick_actions_platform_interface: | 1021 | quick_actions_platform_interface: |
| 1022 | dependency: transitive | 1022 | dependency: transitive |
| 1023 | description: | 1023 | description: |
| 1024 | name: quick_actions_platform_interface | 1024 | name: quick_actions_platform_interface |
| 1025 | - url: "https://pub.dartlang.org" | 1025 | + url: "https://pub.flutter-io.cn" |
| 1026 | source: hosted | 1026 | source: hosted |
| 1027 | version: "1.0.2" | 1027 | version: "1.0.2" |
| 1028 | quiver: | 1028 | quiver: |
| 1029 | dependency: transitive | 1029 | dependency: transitive |
| 1030 | description: | 1030 | description: |
| 1031 | name: quiver | 1031 | name: quiver |
| 1032 | - url: "https://pub.dartlang.org" | 1032 | + url: "https://pub.flutter-io.cn" |
| 1033 | source: hosted | 1033 | source: hosted |
| 1034 | version: "3.1.0" | 1034 | version: "3.1.0" |
| 1035 | rational: | 1035 | rational: |
| 1036 | dependency: transitive | 1036 | dependency: transitive |
| 1037 | description: | 1037 | description: |
| 1038 | name: rational | 1038 | name: rational |
| 1039 | - url: "https://pub.dartlang.org" | 1039 | + url: "https://pub.flutter-io.cn" |
| 1040 | source: hosted | 1040 | source: hosted |
| 1041 | version: "1.2.1" | 1041 | version: "1.2.1" |
| 1042 | recase: | 1042 | recase: |
| 1043 | dependency: transitive | 1043 | dependency: transitive |
| 1044 | description: | 1044 | description: |
| 1045 | name: recase | 1045 | name: recase |
| 1046 | - url: "https://pub.dartlang.org" | 1046 | + url: "https://pub.flutter-io.cn" |
| 1047 | source: hosted | 1047 | source: hosted |
| 1048 | version: "4.0.0" | 1048 | version: "4.0.0" |
| 1049 | rxdart: | 1049 | rxdart: |
| 1050 | dependency: "direct main" | 1050 | dependency: "direct main" |
| 1051 | description: | 1051 | description: |
| 1052 | name: rxdart | 1052 | name: rxdart |
| 1053 | - url: "https://pub.dartlang.org" | 1053 | + url: "https://pub.flutter-io.cn" |
| 1054 | source: hosted | 1054 | source: hosted |
| 1055 | version: "0.27.4" | 1055 | version: "0.27.4" |
| 1056 | safemap: | 1056 | safemap: |
| 1057 | dependency: "direct main" | 1057 | dependency: "direct main" |
| 1058 | description: | 1058 | description: |
| 1059 | name: safemap | 1059 | name: safemap |
| 1060 | - url: "https://pub.dartlang.org" | 1060 | + url: "https://pub.flutter-io.cn" |
| 1061 | source: hosted | 1061 | source: hosted |
| 1062 | version: "2.1.0" | 1062 | version: "2.1.0" |
| 1063 | share_plus: | 1063 | share_plus: |
| 1064 | dependency: "direct main" | 1064 | dependency: "direct main" |
| 1065 | description: | 1065 | description: |
| 1066 | name: share_plus | 1066 | name: share_plus |
| 1067 | - url: "https://pub.dartlang.org" | 1067 | + url: "https://pub.flutter-io.cn" |
| 1068 | source: hosted | 1068 | source: hosted |
| 1069 | version: "4.0.10" | 1069 | version: "4.0.10" |
| 1070 | share_plus_linux: | 1070 | share_plus_linux: |
| 1071 | dependency: transitive | 1071 | dependency: transitive |
| 1072 | description: | 1072 | description: |
| 1073 | name: share_plus_linux | 1073 | name: share_plus_linux |
| 1074 | - url: "https://pub.dartlang.org" | 1074 | + url: "https://pub.flutter-io.cn" |
| 1075 | source: hosted | 1075 | source: hosted |
| 1076 | version: "3.0.0" | 1076 | version: "3.0.0" |
| 1077 | share_plus_macos: | 1077 | share_plus_macos: |
| 1078 | dependency: transitive | 1078 | dependency: transitive |
| 1079 | description: | 1079 | description: |
| 1080 | name: share_plus_macos | 1080 | name: share_plus_macos |
| 1081 | - url: "https://pub.dartlang.org" | 1081 | + url: "https://pub.flutter-io.cn" |
| 1082 | source: hosted | 1082 | source: hosted |
| 1083 | version: "3.0.1" | 1083 | version: "3.0.1" |
| 1084 | share_plus_platform_interface: | 1084 | share_plus_platform_interface: |
| 1085 | dependency: transitive | 1085 | dependency: transitive |
| 1086 | description: | 1086 | description: |
| 1087 | name: share_plus_platform_interface | 1087 | name: share_plus_platform_interface |
| 1088 | - url: "https://pub.dartlang.org" | 1088 | + url: "https://pub.flutter-io.cn" |
| 1089 | source: hosted | 1089 | source: hosted |
| 1090 | version: "3.0.3" | 1090 | version: "3.0.3" |
| 1091 | share_plus_web: | 1091 | share_plus_web: |
| 1092 | dependency: transitive | 1092 | dependency: transitive |
| 1093 | description: | 1093 | description: |
| 1094 | name: share_plus_web | 1094 | name: share_plus_web |
| 1095 | - url: "https://pub.dartlang.org" | 1095 | + url: "https://pub.flutter-io.cn" |
| 1096 | source: hosted | 1096 | source: hosted |
| 1097 | version: "3.0.1" | 1097 | version: "3.0.1" |
| 1098 | share_plus_windows: | 1098 | share_plus_windows: |
| 1099 | dependency: transitive | 1099 | dependency: transitive |
| 1100 | description: | 1100 | description: |
| 1101 | name: share_plus_windows | 1101 | name: share_plus_windows |
| 1102 | - url: "https://pub.dartlang.org" | 1102 | + url: "https://pub.flutter-io.cn" |
| 1103 | source: hosted | 1103 | source: hosted |
| 1104 | version: "3.0.1" | 1104 | version: "3.0.1" |
| 1105 | shared_preferences: | 1105 | shared_preferences: |
| 1106 | dependency: transitive | 1106 | dependency: transitive |
| 1107 | description: | 1107 | description: |
| 1108 | name: shared_preferences | 1108 | name: shared_preferences |
| 1109 | - url: "https://pub.dartlang.org" | 1109 | + url: "https://pub.flutter-io.cn" |
| 1110 | source: hosted | 1110 | source: hosted |
| 1111 | version: "2.0.15" | 1111 | version: "2.0.15" |
| 1112 | shared_preferences_android: | 1112 | shared_preferences_android: |
| 1113 | dependency: transitive | 1113 | dependency: transitive |
| 1114 | description: | 1114 | description: |
| 1115 | name: shared_preferences_android | 1115 | name: shared_preferences_android |
| 1116 | - url: "https://pub.dartlang.org" | 1116 | + url: "https://pub.flutter-io.cn" |
| 1117 | source: hosted | 1117 | source: hosted |
| 1118 | version: "2.0.12" | 1118 | version: "2.0.12" |
| 1119 | shared_preferences_ios: | 1119 | shared_preferences_ios: |
| 1120 | dependency: transitive | 1120 | dependency: transitive |
| 1121 | description: | 1121 | description: |
| 1122 | name: shared_preferences_ios | 1122 | name: shared_preferences_ios |
| 1123 | - url: "https://pub.dartlang.org" | 1123 | + url: "https://pub.flutter-io.cn" |
| 1124 | source: hosted | 1124 | source: hosted |
| 1125 | version: "2.1.1" | 1125 | version: "2.1.1" |
| 1126 | shared_preferences_linux: | 1126 | shared_preferences_linux: |
| 1127 | dependency: transitive | 1127 | dependency: transitive |
| 1128 | description: | 1128 | description: |
| 1129 | name: shared_preferences_linux | 1129 | name: shared_preferences_linux |
| 1130 | - url: "https://pub.dartlang.org" | 1130 | + url: "https://pub.flutter-io.cn" |
| 1131 | source: hosted | 1131 | source: hosted |
| 1132 | version: "2.1.1" | 1132 | version: "2.1.1" |
| 1133 | shared_preferences_macos: | 1133 | shared_preferences_macos: |
| 1134 | dependency: transitive | 1134 | dependency: transitive |
| 1135 | description: | 1135 | description: |
| 1136 | name: shared_preferences_macos | 1136 | name: shared_preferences_macos |
| 1137 | - url: "https://pub.dartlang.org" | 1137 | + url: "https://pub.flutter-io.cn" |
| 1138 | source: hosted | 1138 | source: hosted |
| 1139 | version: "2.0.4" | 1139 | version: "2.0.4" |
| 1140 | shared_preferences_platform_interface: | 1140 | shared_preferences_platform_interface: |
| 1141 | dependency: transitive | 1141 | dependency: transitive |
| 1142 | description: | 1142 | description: |
| 1143 | name: shared_preferences_platform_interface | 1143 | name: shared_preferences_platform_interface |
| 1144 | - url: "https://pub.dartlang.org" | 1144 | + url: "https://pub.flutter-io.cn" |
| 1145 | source: hosted | 1145 | source: hosted |
| 1146 | version: "2.0.0" | 1146 | version: "2.0.0" |
| 1147 | shared_preferences_web: | 1147 | shared_preferences_web: |
| 1148 | dependency: transitive | 1148 | dependency: transitive |
| 1149 | description: | 1149 | description: |
| 1150 | name: shared_preferences_web | 1150 | name: shared_preferences_web |
| 1151 | - url: "https://pub.dartlang.org" | 1151 | + url: "https://pub.flutter-io.cn" |
| 1152 | source: hosted | 1152 | source: hosted |
| 1153 | version: "2.0.4" | 1153 | version: "2.0.4" |
| 1154 | shared_preferences_windows: | 1154 | shared_preferences_windows: |
| 1155 | dependency: transitive | 1155 | dependency: transitive |
| 1156 | description: | 1156 | description: |
| 1157 | name: shared_preferences_windows | 1157 | name: shared_preferences_windows |
| 1158 | - url: "https://pub.dartlang.org" | 1158 | + url: "https://pub.flutter-io.cn" |
| 1159 | source: hosted | 1159 | source: hosted |
| 1160 | version: "2.1.1" | 1160 | version: "2.1.1" |
| 1161 | shelf: | 1161 | shelf: |
| 1162 | dependency: transitive | 1162 | dependency: transitive |
| 1163 | description: | 1163 | description: |
| 1164 | name: shelf | 1164 | name: shelf |
| 1165 | - url: "https://pub.dartlang.org" | 1165 | + url: "https://pub.flutter-io.cn" |
| 1166 | source: hosted | 1166 | source: hosted |
| 1167 | version: "1.3.1" | 1167 | version: "1.3.1" |
| 1168 | shelf_packages_handler: | 1168 | shelf_packages_handler: |
| 1169 | dependency: transitive | 1169 | dependency: transitive |
| 1170 | description: | 1170 | description: |
| 1171 | name: shelf_packages_handler | 1171 | name: shelf_packages_handler |
| 1172 | - url: "https://pub.dartlang.org" | 1172 | + url: "https://pub.flutter-io.cn" |
| 1173 | source: hosted | 1173 | source: hosted |
| 1174 | version: "3.0.1" | 1174 | version: "3.0.1" |
| 1175 | shelf_static: | 1175 | shelf_static: |
| 1176 | dependency: transitive | 1176 | dependency: transitive |
| 1177 | description: | 1177 | description: |
| 1178 | name: shelf_static | 1178 | name: shelf_static |
| 1179 | - url: "https://pub.dartlang.org" | 1179 | + url: "https://pub.flutter-io.cn" |
| 1180 | source: hosted | 1180 | source: hosted |
| 1181 | version: "1.1.1" | 1181 | version: "1.1.1" |
| 1182 | shelf_web_socket: | 1182 | shelf_web_socket: |
| 1183 | dependency: transitive | 1183 | dependency: transitive |
| 1184 | description: | 1184 | description: |
| 1185 | name: shelf_web_socket | 1185 | name: shelf_web_socket |
| 1186 | - url: "https://pub.dartlang.org" | 1186 | + url: "https://pub.flutter-io.cn" |
| 1187 | source: hosted | 1187 | source: hosted |
| 1188 | version: "1.0.2" | 1188 | version: "1.0.2" |
| 1189 | sign_in_with_apple: | 1189 | sign_in_with_apple: |
| 1190 | dependency: "direct main" | 1190 | dependency: "direct main" |
| 1191 | description: | 1191 | description: |
| 1192 | name: sign_in_with_apple | 1192 | name: sign_in_with_apple |
| 1193 | - url: "https://pub.dartlang.org" | 1193 | + url: "https://pub.flutter-io.cn" |
| 1194 | source: hosted | 1194 | source: hosted |
| 1195 | version: "4.0.0" | 1195 | version: "4.0.0" |
| 1196 | sign_in_with_apple_platform_interface: | 1196 | sign_in_with_apple_platform_interface: |
| 1197 | dependency: transitive | 1197 | dependency: transitive |
| 1198 | description: | 1198 | description: |
| 1199 | name: sign_in_with_apple_platform_interface | 1199 | name: sign_in_with_apple_platform_interface |
| 1200 | - url: "https://pub.dartlang.org" | 1200 | + url: "https://pub.flutter-io.cn" |
| 1201 | source: hosted | 1201 | source: hosted |
| 1202 | version: "1.0.0" | 1202 | version: "1.0.0" |
| 1203 | sign_in_with_apple_web: | 1203 | sign_in_with_apple_web: |
| 1204 | dependency: transitive | 1204 | dependency: transitive |
| 1205 | description: | 1205 | description: |
| 1206 | name: sign_in_with_apple_web | 1206 | name: sign_in_with_apple_web |
| 1207 | - url: "https://pub.dartlang.org" | 1207 | + url: "https://pub.flutter-io.cn" |
| 1208 | source: hosted | 1208 | source: hosted |
| 1209 | version: "1.0.1" | 1209 | version: "1.0.1" |
| 1210 | sky_engine: | 1210 | sky_engine: |
| ... | @@ -1216,427 +1216,427 @@ packages: | ... | @@ -1216,427 +1216,427 @@ packages: |
| 1216 | dependency: transitive | 1216 | dependency: transitive |
| 1217 | description: | 1217 | description: |
| 1218 | name: source_gen | 1218 | name: source_gen |
| 1219 | - url: "https://pub.dartlang.org" | 1219 | + url: "https://pub.flutter-io.cn" |
| 1220 | source: hosted | 1220 | source: hosted |
| 1221 | version: "1.2.2" | 1221 | version: "1.2.2" |
| 1222 | source_helper: | 1222 | source_helper: |
| 1223 | dependency: transitive | 1223 | dependency: transitive |
| 1224 | description: | 1224 | description: |
| 1225 | name: source_helper | 1225 | name: source_helper |
| 1226 | - url: "https://pub.dartlang.org" | 1226 | + url: "https://pub.flutter-io.cn" |
| 1227 | source: hosted | 1227 | source: hosted |
| 1228 | version: "1.3.2" | 1228 | version: "1.3.2" |
| 1229 | source_map_stack_trace: | 1229 | source_map_stack_trace: |
| 1230 | dependency: transitive | 1230 | dependency: transitive |
| 1231 | description: | 1231 | description: |
| 1232 | name: source_map_stack_trace | 1232 | name: source_map_stack_trace |
| 1233 | - url: "https://pub.dartlang.org" | 1233 | + url: "https://pub.flutter-io.cn" |
| 1234 | source: hosted | 1234 | source: hosted |
| 1235 | version: "2.1.0" | 1235 | version: "2.1.0" |
| 1236 | source_maps: | 1236 | source_maps: |
| 1237 | dependency: transitive | 1237 | dependency: transitive |
| 1238 | description: | 1238 | description: |
| 1239 | name: source_maps | 1239 | name: source_maps |
| 1240 | - url: "https://pub.dartlang.org" | 1240 | + url: "https://pub.flutter-io.cn" |
| 1241 | source: hosted | 1241 | source: hosted |
| 1242 | version: "0.10.10" | 1242 | version: "0.10.10" |
| 1243 | source_span: | 1243 | source_span: |
| 1244 | dependency: transitive | 1244 | dependency: transitive |
| 1245 | description: | 1245 | description: |
| 1246 | name: source_span | 1246 | name: source_span |
| 1247 | - url: "https://pub.dartlang.org" | 1247 | + url: "https://pub.flutter-io.cn" |
| 1248 | source: hosted | 1248 | source: hosted |
| 1249 | version: "1.8.2" | 1249 | version: "1.8.2" |
| 1250 | sp_util: | 1250 | sp_util: |
| 1251 | dependency: transitive | 1251 | dependency: transitive |
| 1252 | description: | 1252 | description: |
| 1253 | name: sp_util | 1253 | name: sp_util |
| 1254 | - url: "https://pub.dartlang.org" | 1254 | + url: "https://pub.flutter-io.cn" |
| 1255 | source: hosted | 1255 | source: hosted |
| 1256 | version: "2.0.3" | 1256 | version: "2.0.3" |
| 1257 | sprintf: | 1257 | sprintf: |
| 1258 | dependency: "direct main" | 1258 | dependency: "direct main" |
| 1259 | description: | 1259 | description: |
| 1260 | name: sprintf | 1260 | name: sprintf |
| 1261 | - url: "https://pub.dartlang.org" | 1261 | + url: "https://pub.flutter-io.cn" |
| 1262 | source: hosted | 1262 | source: hosted |
| 1263 | version: "6.0.0" | 1263 | version: "6.0.0" |
| 1264 | sqflite: | 1264 | sqflite: |
| 1265 | dependency: transitive | 1265 | dependency: transitive |
| 1266 | description: | 1266 | description: |
| 1267 | name: sqflite | 1267 | name: sqflite |
| 1268 | - url: "https://pub.dartlang.org" | 1268 | + url: "https://pub.flutter-io.cn" |
| 1269 | source: hosted | 1269 | source: hosted |
| 1270 | - version: "2.0.2+1" | 1270 | + version: "2.0.3" |
| 1271 | sqflite_common: | 1271 | sqflite_common: |
| 1272 | dependency: transitive | 1272 | dependency: transitive |
| 1273 | description: | 1273 | description: |
| 1274 | name: sqflite_common | 1274 | name: sqflite_common |
| 1275 | - url: "https://pub.dartlang.org" | 1275 | + url: "https://pub.flutter-io.cn" |
| 1276 | source: hosted | 1276 | source: hosted |
| 1277 | version: "2.2.1+1" | 1277 | version: "2.2.1+1" |
| 1278 | stack_trace: | 1278 | stack_trace: |
| 1279 | dependency: transitive | 1279 | dependency: transitive |
| 1280 | description: | 1280 | description: |
| 1281 | name: stack_trace | 1281 | name: stack_trace |
| 1282 | - url: "https://pub.dartlang.org" | 1282 | + url: "https://pub.flutter-io.cn" |
| 1283 | source: hosted | 1283 | source: hosted |
| 1284 | version: "1.10.0" | 1284 | version: "1.10.0" |
| 1285 | sticky_headers: | 1285 | sticky_headers: |
| 1286 | dependency: "direct main" | 1286 | dependency: "direct main" |
| 1287 | description: | 1287 | description: |
| 1288 | name: sticky_headers | 1288 | name: sticky_headers |
| 1289 | - url: "https://pub.dartlang.org" | 1289 | + url: "https://pub.flutter-io.cn" |
| 1290 | source: hosted | 1290 | source: hosted |
| 1291 | version: "0.3.0+2" | 1291 | version: "0.3.0+2" |
| 1292 | stream_channel: | 1292 | stream_channel: |
| 1293 | dependency: transitive | 1293 | dependency: transitive |
| 1294 | description: | 1294 | description: |
| 1295 | name: stream_channel | 1295 | name: stream_channel |
| 1296 | - url: "https://pub.dartlang.org" | 1296 | + url: "https://pub.flutter-io.cn" |
| 1297 | source: hosted | 1297 | source: hosted |
| 1298 | version: "2.1.0" | 1298 | version: "2.1.0" |
| 1299 | stream_transform: | 1299 | stream_transform: |
| 1300 | dependency: transitive | 1300 | dependency: transitive |
| 1301 | description: | 1301 | description: |
| 1302 | name: stream_transform | 1302 | name: stream_transform |
| 1303 | - url: "https://pub.dartlang.org" | 1303 | + url: "https://pub.flutter-io.cn" |
| 1304 | source: hosted | 1304 | source: hosted |
| 1305 | version: "2.0.0" | 1305 | version: "2.0.0" |
| 1306 | string_scanner: | 1306 | string_scanner: |
| 1307 | dependency: transitive | 1307 | dependency: transitive |
| 1308 | description: | 1308 | description: |
| 1309 | name: string_scanner | 1309 | name: string_scanner |
| 1310 | - url: "https://pub.dartlang.org" | 1310 | + url: "https://pub.flutter-io.cn" |
| 1311 | source: hosted | 1311 | source: hosted |
| 1312 | version: "1.1.0" | 1312 | version: "1.1.0" |
| 1313 | sync_http: | 1313 | sync_http: |
| 1314 | dependency: transitive | 1314 | dependency: transitive |
| 1315 | description: | 1315 | description: |
| 1316 | name: sync_http | 1316 | name: sync_http |
| 1317 | - url: "https://pub.dartlang.org" | 1317 | + url: "https://pub.flutter-io.cn" |
| 1318 | source: hosted | 1318 | source: hosted |
| 1319 | version: "0.3.0" | 1319 | version: "0.3.0" |
| 1320 | synchronized: | 1320 | synchronized: |
| 1321 | dependency: transitive | 1321 | dependency: transitive |
| 1322 | description: | 1322 | description: |
| 1323 | name: synchronized | 1323 | name: synchronized |
| 1324 | - url: "https://pub.dartlang.org" | 1324 | + url: "https://pub.flutter-io.cn" |
| 1325 | source: hosted | 1325 | source: hosted |
| 1326 | version: "3.0.0+2" | 1326 | version: "3.0.0+2" |
| 1327 | tapped: | 1327 | tapped: |
| 1328 | dependency: "direct main" | 1328 | dependency: "direct main" |
| 1329 | description: | 1329 | description: |
| 1330 | name: tapped | 1330 | name: tapped |
| 1331 | - url: "https://pub.dartlang.org" | 1331 | + url: "https://pub.flutter-io.cn" |
| 1332 | source: hosted | 1332 | source: hosted |
| 1333 | version: "2.0.0" | 1333 | version: "2.0.0" |
| 1334 | term_glyph: | 1334 | term_glyph: |
| 1335 | dependency: transitive | 1335 | dependency: transitive |
| 1336 | description: | 1336 | description: |
| 1337 | name: term_glyph | 1337 | name: term_glyph |
| 1338 | - url: "https://pub.dartlang.org" | 1338 | + url: "https://pub.flutter-io.cn" |
| 1339 | source: hosted | 1339 | source: hosted |
| 1340 | version: "1.2.0" | 1340 | version: "1.2.0" |
| 1341 | test: | 1341 | test: |
| 1342 | dependency: "direct dev" | 1342 | dependency: "direct dev" |
| 1343 | description: | 1343 | description: |
| 1344 | name: test | 1344 | name: test |
| 1345 | - url: "https://pub.dartlang.org" | 1345 | + url: "https://pub.flutter-io.cn" |
| 1346 | source: hosted | 1346 | source: hosted |
| 1347 | version: "1.21.1" | 1347 | version: "1.21.1" |
| 1348 | test_api: | 1348 | test_api: |
| 1349 | dependency: transitive | 1349 | dependency: transitive |
| 1350 | description: | 1350 | description: |
| 1351 | name: test_api | 1351 | name: test_api |
| 1352 | - url: "https://pub.dartlang.org" | 1352 | + url: "https://pub.flutter-io.cn" |
| 1353 | source: hosted | 1353 | source: hosted |
| 1354 | version: "0.4.9" | 1354 | version: "0.4.9" |
| 1355 | test_core: | 1355 | test_core: |
| 1356 | dependency: transitive | 1356 | dependency: transitive |
| 1357 | description: | 1357 | description: |
| 1358 | name: test_core | 1358 | name: test_core |
| 1359 | - url: "https://pub.dartlang.org" | 1359 | + url: "https://pub.flutter-io.cn" |
| 1360 | source: hosted | 1360 | source: hosted |
| 1361 | version: "0.4.13" | 1361 | version: "0.4.13" |
| 1362 | timing: | 1362 | timing: |
| 1363 | dependency: transitive | 1363 | dependency: transitive |
| 1364 | description: | 1364 | description: |
| 1365 | name: timing | 1365 | name: timing |
| 1366 | - url: "https://pub.dartlang.org" | 1366 | + url: "https://pub.flutter-io.cn" |
| 1367 | source: hosted | 1367 | source: hosted |
| 1368 | version: "1.0.0" | 1368 | version: "1.0.0" |
| 1369 | twitter_login: | 1369 | twitter_login: |
| 1370 | dependency: "direct main" | 1370 | dependency: "direct main" |
| 1371 | description: | 1371 | description: |
| 1372 | name: twitter_login | 1372 | name: twitter_login |
| 1373 | - url: "https://pub.dartlang.org" | 1373 | + url: "https://pub.flutter-io.cn" |
| 1374 | source: hosted | 1374 | source: hosted |
| 1375 | version: "4.2.3" | 1375 | version: "4.2.3" |
| 1376 | typed_data: | 1376 | typed_data: |
| 1377 | dependency: transitive | 1377 | dependency: transitive |
| 1378 | description: | 1378 | description: |
| 1379 | name: typed_data | 1379 | name: typed_data |
| 1380 | - url: "https://pub.dartlang.org" | 1380 | + url: "https://pub.flutter-io.cn" |
| 1381 | source: hosted | 1381 | source: hosted |
| 1382 | version: "1.3.0" | 1382 | version: "1.3.0" |
| 1383 | universal_io: | 1383 | universal_io: |
| 1384 | dependency: transitive | 1384 | dependency: transitive |
| 1385 | description: | 1385 | description: |
| 1386 | name: universal_io | 1386 | name: universal_io |
| 1387 | - url: "https://pub.dartlang.org" | 1387 | + url: "https://pub.flutter-io.cn" |
| 1388 | source: hosted | 1388 | source: hosted |
| 1389 | version: "2.0.4" | 1389 | version: "2.0.4" |
| 1390 | url_launcher: | 1390 | url_launcher: |
| 1391 | dependency: "direct main" | 1391 | dependency: "direct main" |
| 1392 | description: | 1392 | description: |
| 1393 | name: url_launcher | 1393 | name: url_launcher |
| 1394 | - url: "https://pub.dartlang.org" | 1394 | + url: "https://pub.flutter-io.cn" |
| 1395 | source: hosted | 1395 | source: hosted |
| 1396 | version: "6.1.4" | 1396 | version: "6.1.4" |
| 1397 | url_launcher_android: | 1397 | url_launcher_android: |
| 1398 | dependency: transitive | 1398 | dependency: transitive |
| 1399 | description: | 1399 | description: |
| 1400 | name: url_launcher_android | 1400 | name: url_launcher_android |
| 1401 | - url: "https://pub.dartlang.org" | 1401 | + url: "https://pub.flutter-io.cn" |
| 1402 | source: hosted | 1402 | source: hosted |
| 1403 | version: "6.0.17" | 1403 | version: "6.0.17" |
| 1404 | url_launcher_ios: | 1404 | url_launcher_ios: |
| 1405 | dependency: transitive | 1405 | dependency: transitive |
| 1406 | description: | 1406 | description: |
| 1407 | name: url_launcher_ios | 1407 | name: url_launcher_ios |
| 1408 | - url: "https://pub.dartlang.org" | 1408 | + url: "https://pub.flutter-io.cn" |
| 1409 | source: hosted | 1409 | source: hosted |
| 1410 | version: "6.0.17" | 1410 | version: "6.0.17" |
| 1411 | url_launcher_linux: | 1411 | url_launcher_linux: |
| 1412 | dependency: transitive | 1412 | dependency: transitive |
| 1413 | description: | 1413 | description: |
| 1414 | name: url_launcher_linux | 1414 | name: url_launcher_linux |
| 1415 | - url: "https://pub.dartlang.org" | 1415 | + url: "https://pub.flutter-io.cn" |
| 1416 | source: hosted | 1416 | source: hosted |
| 1417 | version: "3.0.1" | 1417 | version: "3.0.1" |
| 1418 | url_launcher_macos: | 1418 | url_launcher_macos: |
| 1419 | dependency: transitive | 1419 | dependency: transitive |
| 1420 | description: | 1420 | description: |
| 1421 | name: url_launcher_macos | 1421 | name: url_launcher_macos |
| 1422 | - url: "https://pub.dartlang.org" | 1422 | + url: "https://pub.flutter-io.cn" |
| 1423 | source: hosted | 1423 | source: hosted |
| 1424 | version: "3.0.1" | 1424 | version: "3.0.1" |
| 1425 | url_launcher_platform_interface: | 1425 | url_launcher_platform_interface: |
| 1426 | dependency: transitive | 1426 | dependency: transitive |
| 1427 | description: | 1427 | description: |
| 1428 | name: url_launcher_platform_interface | 1428 | name: url_launcher_platform_interface |
| 1429 | - url: "https://pub.dartlang.org" | 1429 | + url: "https://pub.flutter-io.cn" |
| 1430 | source: hosted | 1430 | source: hosted |
| 1431 | version: "2.1.0" | 1431 | version: "2.1.0" |
| 1432 | url_launcher_web: | 1432 | url_launcher_web: |
| 1433 | dependency: transitive | 1433 | dependency: transitive |
| 1434 | description: | 1434 | description: |
| 1435 | name: url_launcher_web | 1435 | name: url_launcher_web |
| 1436 | - url: "https://pub.dartlang.org" | 1436 | + url: "https://pub.flutter-io.cn" |
| 1437 | source: hosted | 1437 | source: hosted |
| 1438 | version: "2.0.12" | 1438 | version: "2.0.12" |
| 1439 | url_launcher_windows: | 1439 | url_launcher_windows: |
| 1440 | dependency: transitive | 1440 | dependency: transitive |
| 1441 | description: | 1441 | description: |
| 1442 | name: url_launcher_windows | 1442 | name: url_launcher_windows |
| 1443 | - url: "https://pub.dartlang.org" | 1443 | + url: "https://pub.flutter-io.cn" |
| 1444 | source: hosted | 1444 | source: hosted |
| 1445 | version: "3.0.1" | 1445 | version: "3.0.1" |
| 1446 | url_strategy: | 1446 | url_strategy: |
| 1447 | dependency: "direct main" | 1447 | dependency: "direct main" |
| 1448 | description: | 1448 | description: |
| 1449 | name: url_strategy | 1449 | name: url_strategy |
| 1450 | - url: "https://pub.dartlang.org" | 1450 | + url: "https://pub.flutter-io.cn" |
| 1451 | source: hosted | 1451 | source: hosted |
| 1452 | version: "0.2.0" | 1452 | version: "0.2.0" |
| 1453 | uuid: | 1453 | uuid: |
| 1454 | dependency: transitive | 1454 | dependency: transitive |
| 1455 | description: | 1455 | description: |
| 1456 | name: uuid | 1456 | name: uuid |
| 1457 | - url: "https://pub.dartlang.org" | 1457 | + url: "https://pub.flutter-io.cn" |
| 1458 | source: hosted | 1458 | source: hosted |
| 1459 | version: "3.0.6" | 1459 | version: "3.0.6" |
| 1460 | vector_math: | 1460 | vector_math: |
| 1461 | dependency: transitive | 1461 | dependency: transitive |
| 1462 | description: | 1462 | description: |
| 1463 | name: vector_math | 1463 | name: vector_math |
| 1464 | - url: "https://pub.dartlang.org" | 1464 | + url: "https://pub.flutter-io.cn" |
| 1465 | source: hosted | 1465 | source: hosted |
| 1466 | version: "2.1.2" | 1466 | version: "2.1.2" |
| 1467 | vibration: | 1467 | vibration: |
| 1468 | dependency: "direct main" | 1468 | dependency: "direct main" |
| 1469 | description: | 1469 | description: |
| 1470 | name: vibration | 1470 | name: vibration |
| 1471 | - url: "https://pub.dartlang.org" | 1471 | + url: "https://pub.flutter-io.cn" |
| 1472 | source: hosted | 1472 | source: hosted |
| 1473 | version: "1.7.4-nullsafety.0" | 1473 | version: "1.7.4-nullsafety.0" |
| 1474 | vibration_web: | 1474 | vibration_web: |
| 1475 | dependency: transitive | 1475 | dependency: transitive |
| 1476 | description: | 1476 | description: |
| 1477 | name: vibration_web | 1477 | name: vibration_web |
| 1478 | - url: "https://pub.dartlang.org" | 1478 | + url: "https://pub.flutter-io.cn" |
| 1479 | source: hosted | 1479 | source: hosted |
| 1480 | version: "1.6.3-nullsafety.0" | 1480 | version: "1.6.3-nullsafety.0" |
| 1481 | video_player: | 1481 | video_player: |
| 1482 | dependency: "direct main" | 1482 | dependency: "direct main" |
| 1483 | description: | 1483 | description: |
| 1484 | name: video_player | 1484 | name: video_player |
| 1485 | - url: "https://pub.dartlang.org" | 1485 | + url: "https://pub.flutter-io.cn" |
| 1486 | source: hosted | 1486 | source: hosted |
| 1487 | version: "2.4.5" | 1487 | version: "2.4.5" |
| 1488 | video_player_android: | 1488 | video_player_android: |
| 1489 | dependency: transitive | 1489 | dependency: transitive |
| 1490 | description: | 1490 | description: |
| 1491 | name: video_player_android | 1491 | name: video_player_android |
| 1492 | - url: "https://pub.dartlang.org" | 1492 | + url: "https://pub.flutter-io.cn" |
| 1493 | source: hosted | 1493 | source: hosted |
| 1494 | version: "2.3.6" | 1494 | version: "2.3.6" |
| 1495 | video_player_avfoundation: | 1495 | video_player_avfoundation: |
| 1496 | dependency: transitive | 1496 | dependency: transitive |
| 1497 | description: | 1497 | description: |
| 1498 | name: video_player_avfoundation | 1498 | name: video_player_avfoundation |
| 1499 | - url: "https://pub.dartlang.org" | 1499 | + url: "https://pub.flutter-io.cn" |
| 1500 | source: hosted | 1500 | source: hosted |
| 1501 | version: "2.3.5" | 1501 | version: "2.3.5" |
| 1502 | video_player_platform_interface: | 1502 | video_player_platform_interface: |
| 1503 | dependency: transitive | 1503 | dependency: transitive |
| 1504 | description: | 1504 | description: |
| 1505 | name: video_player_platform_interface | 1505 | name: video_player_platform_interface |
| 1506 | - url: "https://pub.dartlang.org" | 1506 | + url: "https://pub.flutter-io.cn" |
| 1507 | source: hosted | 1507 | source: hosted |
| 1508 | version: "5.1.3" | 1508 | version: "5.1.3" |
| 1509 | video_player_web: | 1509 | video_player_web: |
| 1510 | dependency: transitive | 1510 | dependency: transitive |
| 1511 | description: | 1511 | description: |
| 1512 | name: video_player_web | 1512 | name: video_player_web |
| 1513 | - url: "https://pub.dartlang.org" | 1513 | + url: "https://pub.flutter-io.cn" |
| 1514 | source: hosted | 1514 | source: hosted |
| 1515 | version: "2.0.10" | 1515 | version: "2.0.10" |
| 1516 | vm_service: | 1516 | vm_service: |
| 1517 | dependency: transitive | 1517 | dependency: transitive |
| 1518 | description: | 1518 | description: |
| 1519 | name: vm_service | 1519 | name: vm_service |
| 1520 | - url: "https://pub.dartlang.org" | 1520 | + url: "https://pub.flutter-io.cn" |
| 1521 | source: hosted | 1521 | source: hosted |
| 1522 | version: "8.2.2" | 1522 | version: "8.2.2" |
| 1523 | wakelock: | 1523 | wakelock: |
| 1524 | - dependency: transitive | 1524 | + dependency: "direct main" |
| 1525 | description: | 1525 | description: |
| 1526 | name: wakelock | 1526 | name: wakelock |
| 1527 | - url: "https://pub.dartlang.org" | 1527 | + url: "https://pub.flutter-io.cn" |
| 1528 | source: hosted | 1528 | source: hosted |
| 1529 | version: "0.6.1+2" | 1529 | version: "0.6.1+2" |
| 1530 | wakelock_macos: | 1530 | wakelock_macos: |
| 1531 | dependency: transitive | 1531 | dependency: transitive |
| 1532 | description: | 1532 | description: |
| 1533 | name: wakelock_macos | 1533 | name: wakelock_macos |
| 1534 | - url: "https://pub.dartlang.org" | 1534 | + url: "https://pub.flutter-io.cn" |
| 1535 | source: hosted | 1535 | source: hosted |
| 1536 | version: "0.4.0" | 1536 | version: "0.4.0" |
| 1537 | wakelock_platform_interface: | 1537 | wakelock_platform_interface: |
| 1538 | dependency: transitive | 1538 | dependency: transitive |
| 1539 | description: | 1539 | description: |
| 1540 | name: wakelock_platform_interface | 1540 | name: wakelock_platform_interface |
| 1541 | - url: "https://pub.dartlang.org" | 1541 | + url: "https://pub.flutter-io.cn" |
| 1542 | source: hosted | 1542 | source: hosted |
| 1543 | version: "0.3.0" | 1543 | version: "0.3.0" |
| 1544 | wakelock_web: | 1544 | wakelock_web: |
| 1545 | dependency: transitive | 1545 | dependency: transitive |
| 1546 | description: | 1546 | description: |
| 1547 | name: wakelock_web | 1547 | name: wakelock_web |
| 1548 | - url: "https://pub.dartlang.org" | 1548 | + url: "https://pub.flutter-io.cn" |
| 1549 | source: hosted | 1549 | source: hosted |
| 1550 | version: "0.4.0" | 1550 | version: "0.4.0" |
| 1551 | wakelock_windows: | 1551 | wakelock_windows: |
| 1552 | dependency: transitive | 1552 | dependency: transitive |
| 1553 | description: | 1553 | description: |
| 1554 | name: wakelock_windows | 1554 | name: wakelock_windows |
| 1555 | - url: "https://pub.dartlang.org" | 1555 | + url: "https://pub.flutter-io.cn" |
| 1556 | source: hosted | 1556 | source: hosted |
| 1557 | version: "0.2.0" | 1557 | version: "0.2.0" |
| 1558 | watcher: | 1558 | watcher: |
| 1559 | dependency: transitive | 1559 | dependency: transitive |
| 1560 | description: | 1560 | description: |
| 1561 | name: watcher | 1561 | name: watcher |
| 1562 | - url: "https://pub.dartlang.org" | 1562 | + url: "https://pub.flutter-io.cn" |
| 1563 | source: hosted | 1563 | source: hosted |
| 1564 | version: "1.0.1" | 1564 | version: "1.0.1" |
| 1565 | web_socket_channel: | 1565 | web_socket_channel: |
| 1566 | dependency: transitive | 1566 | dependency: transitive |
| 1567 | description: | 1567 | description: |
| 1568 | name: web_socket_channel | 1568 | name: web_socket_channel |
| 1569 | - url: "https://pub.dartlang.org" | 1569 | + url: "https://pub.flutter-io.cn" |
| 1570 | source: hosted | 1570 | source: hosted |
| 1571 | version: "2.2.0" | 1571 | version: "2.2.0" |
| 1572 | webdriver: | 1572 | webdriver: |
| 1573 | dependency: transitive | 1573 | dependency: transitive |
| 1574 | description: | 1574 | description: |
| 1575 | name: webdriver | 1575 | name: webdriver |
| 1576 | - url: "https://pub.dartlang.org" | 1576 | + url: "https://pub.flutter-io.cn" |
| 1577 | source: hosted | 1577 | source: hosted |
| 1578 | version: "3.0.0" | 1578 | version: "3.0.0" |
| 1579 | webkit_inspection_protocol: | 1579 | webkit_inspection_protocol: |
| 1580 | dependency: transitive | 1580 | dependency: transitive |
| 1581 | description: | 1581 | description: |
| 1582 | name: webkit_inspection_protocol | 1582 | name: webkit_inspection_protocol |
| 1583 | - url: "https://pub.dartlang.org" | 1583 | + url: "https://pub.flutter-io.cn" |
| 1584 | source: hosted | 1584 | source: hosted |
| 1585 | version: "1.1.0" | 1585 | version: "1.1.0" |
| 1586 | webview_flutter: | 1586 | webview_flutter: |
| 1587 | dependency: "direct main" | 1587 | dependency: "direct main" |
| 1588 | description: | 1588 | description: |
| 1589 | name: webview_flutter | 1589 | name: webview_flutter |
| 1590 | - url: "https://pub.dartlang.org" | 1590 | + url: "https://pub.flutter-io.cn" |
| 1591 | source: hosted | 1591 | source: hosted |
| 1592 | version: "3.0.4" | 1592 | version: "3.0.4" |
| 1593 | webview_flutter_android: | 1593 | webview_flutter_android: |
| 1594 | dependency: transitive | 1594 | dependency: transitive |
| 1595 | description: | 1595 | description: |
| 1596 | name: webview_flutter_android | 1596 | name: webview_flutter_android |
| 1597 | - url: "https://pub.dartlang.org" | 1597 | + url: "https://pub.flutter-io.cn" |
| 1598 | source: hosted | 1598 | source: hosted |
| 1599 | version: "2.8.14" | 1599 | version: "2.8.14" |
| 1600 | webview_flutter_platform_interface: | 1600 | webview_flutter_platform_interface: |
| 1601 | dependency: transitive | 1601 | dependency: transitive |
| 1602 | description: | 1602 | description: |
| 1603 | name: webview_flutter_platform_interface | 1603 | name: webview_flutter_platform_interface |
| 1604 | - url: "https://pub.dartlang.org" | 1604 | + url: "https://pub.flutter-io.cn" |
| 1605 | source: hosted | 1605 | source: hosted |
| 1606 | version: "1.9.1" | 1606 | version: "1.9.1" |
| 1607 | webview_flutter_wkwebview: | 1607 | webview_flutter_wkwebview: |
| 1608 | dependency: transitive | 1608 | dependency: transitive |
| 1609 | description: | 1609 | description: |
| 1610 | name: webview_flutter_wkwebview | 1610 | name: webview_flutter_wkwebview |
| 1611 | - url: "https://pub.dartlang.org" | 1611 | + url: "https://pub.flutter-io.cn" |
| 1612 | source: hosted | 1612 | source: hosted |
| 1613 | version: "2.8.1" | 1613 | version: "2.8.1" |
| 1614 | win32: | 1614 | win32: |
| 1615 | dependency: transitive | 1615 | dependency: transitive |
| 1616 | description: | 1616 | description: |
| 1617 | name: win32 | 1617 | name: win32 |
| 1618 | - url: "https://pub.dartlang.org" | 1618 | + url: "https://pub.flutter-io.cn" |
| 1619 | source: hosted | 1619 | source: hosted |
| 1620 | version: "2.6.1" | 1620 | version: "2.6.1" |
| 1621 | xdg_directories: | 1621 | xdg_directories: |
| 1622 | dependency: transitive | 1622 | dependency: transitive |
| 1623 | description: | 1623 | description: |
| 1624 | name: xdg_directories | 1624 | name: xdg_directories |
| 1625 | - url: "https://pub.dartlang.org" | 1625 | + url: "https://pub.flutter-io.cn" |
| 1626 | source: hosted | 1626 | source: hosted |
| 1627 | version: "0.2.0+1" | 1627 | version: "0.2.0+1" |
| 1628 | xml: | 1628 | xml: |
| 1629 | dependency: transitive | 1629 | dependency: transitive |
| 1630 | description: | 1630 | description: |
| 1631 | name: xml | 1631 | name: xml |
| 1632 | - url: "https://pub.dartlang.org" | 1632 | + url: "https://pub.flutter-io.cn" |
| 1633 | source: hosted | 1633 | source: hosted |
| 1634 | version: "6.1.0" | 1634 | version: "6.1.0" |
| 1635 | yaml: | 1635 | yaml: |
| 1636 | dependency: transitive | 1636 | dependency: transitive |
| 1637 | description: | 1637 | description: |
| 1638 | name: yaml | 1638 | name: yaml |
| 1639 | - url: "https://pub.dartlang.org" | 1639 | + url: "https://pub.flutter-io.cn" |
| 1640 | source: hosted | 1640 | source: hosted |
| 1641 | version: "3.1.1" | 1641 | version: "3.1.1" |
| 1642 | sdks: | 1642 | sdks: | ... | ... |
| ... | @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev | ... | @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev |
| 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. | 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. |
| 16 | # Read more about iOS versioning at | 16 | # Read more about iOS versioning at |
| 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html |
| 18 | -version: 1.0.0+4 | 18 | +version: 1.0.0+5 |
| 19 | 19 | ||
| 20 | environment: | 20 | environment: |
| 21 | sdk: ">=2.16.2 <3.0.0" | 21 | sdk: ">=2.16.2 <3.0.0" |
| ... | @@ -128,6 +128,7 @@ dependencies: | ... | @@ -128,6 +128,7 @@ dependencies: |
| 128 | flutter_easy_permission: ^1.1.2 | 128 | flutter_easy_permission: ^1.1.2 |
| 129 | 129 | ||
| 130 | google_fonts: ^3.0.1 | 130 | google_fonts: ^3.0.1 |
| 131 | + wakelock: ^0.6.1+2 | ||
| 131 | 132 | ||
| 132 | dependency_overrides: | 133 | dependency_overrides: |
| 133 | decimal: 1.5.0 | 134 | decimal: 1.5.0 | ... | ... |
-
Please register or login to post a comment