Stop tracking example/.dart_tool directory
This commit is contained in:
parent
dfc8adceac
commit
7bdcbe85cf
@ -1,18 +0,0 @@
|
|||||||
// Flutter web plugin registrant file.
|
|
||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
//
|
|
||||||
|
|
||||||
// @dart = 2.13
|
|
||||||
// ignore_for_file: type=lint
|
|
||||||
|
|
||||||
import 'package:connectivity_for_web/connectivity_for_web.dart';
|
|
||||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
|
||||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
|
||||||
|
|
||||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
|
||||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
|
||||||
ConnectivityPlugin.registerWith(registrar);
|
|
||||||
SharedPreferencesPlugin.registerWith(registrar);
|
|
||||||
registrar.registerMessageHandler();
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
Extension Discovery Cache
|
|
||||||
=========================
|
|
||||||
|
|
||||||
This folder is used by `package:extension_discovery` to cache lists of
|
|
||||||
packages that contains extensions for other packages.
|
|
||||||
|
|
||||||
DO NOT USE THIS FOLDER
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
* Do not read (or rely) the contents of this folder.
|
|
||||||
* Do write to this folder.
|
|
||||||
|
|
||||||
If you're interested in the lists of extensions stored in this folder use the
|
|
||||||
API offered by package `extension_discovery` to get this information.
|
|
||||||
|
|
||||||
If this package doesn't work for your use-case, then don't try to read the
|
|
||||||
contents of this folder. It may change, and will not remain stable.
|
|
||||||
|
|
||||||
Use package `extension_discovery`
|
|
||||||
---------------------------------
|
|
||||||
|
|
||||||
If you want to access information from this folder.
|
|
||||||
|
|
||||||
Feel free to delete this folder
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
Files in this folder act as a cache, and the cache is discarded if the files
|
|
||||||
are older than the modification time of `.dart_tool/package_config.json`.
|
|
||||||
|
|
||||||
Hence, it should never be necessary to clear this cache manually, if you find a
|
|
||||||
need to do please file a bug.
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"entries":[{"package":"wukongimfluttersdk","rootUri":"../../","packageUri":"lib/"},{"package":"example","rootUri":"../","packageUri":"lib/"}]}
|
|
@ -1,122 +0,0 @@
|
|||||||
//
|
|
||||||
// Generated file. Do not edit.
|
|
||||||
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
|
|
||||||
//
|
|
||||||
|
|
||||||
// @dart = 2.17
|
|
||||||
|
|
||||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
|
||||||
import 'package:shared_preferences_android/shared_preferences_android.dart';
|
|
||||||
import 'package:sqflite_android/sqflite_android.dart';
|
|
||||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
|
||||||
import 'package:sqflite_darwin/sqflite_darwin.dart';
|
|
||||||
import 'package:path_provider_linux/path_provider_linux.dart';
|
|
||||||
import 'package:shared_preferences_linux/shared_preferences_linux.dart';
|
|
||||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
|
||||||
import 'package:sqflite_darwin/sqflite_darwin.dart';
|
|
||||||
import 'package:path_provider_windows/path_provider_windows.dart';
|
|
||||||
import 'package:shared_preferences_windows/shared_preferences_windows.dart';
|
|
||||||
|
|
||||||
@pragma('vm:entry-point')
|
|
||||||
class _PluginRegistrant {
|
|
||||||
|
|
||||||
@pragma('vm:entry-point')
|
|
||||||
static void register() {
|
|
||||||
if (Platform.isAndroid) {
|
|
||||||
try {
|
|
||||||
SharedPreferencesAndroid.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_android` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
SqfliteAndroid.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`sqflite_android` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isIOS) {
|
|
||||||
try {
|
|
||||||
SharedPreferencesFoundation.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_foundation` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
SqfliteDarwin.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`sqflite_darwin` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isLinux) {
|
|
||||||
try {
|
|
||||||
PathProviderLinux.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`path_provider_linux` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
SharedPreferencesLinux.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_linux` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isMacOS) {
|
|
||||||
try {
|
|
||||||
SharedPreferencesFoundation.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_foundation` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
SqfliteDarwin.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`sqflite_darwin` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
} else if (Platform.isWindows) {
|
|
||||||
try {
|
|
||||||
PathProviderWindows.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`path_provider_windows` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
SharedPreferencesWindows.registerWith();
|
|
||||||
} catch (err) {
|
|
||||||
print(
|
|
||||||
'`shared_preferences_windows` threw an error: $err. '
|
|
||||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
{"inputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/package_config_subset"],"outputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/dart_plugin_registrant.dart"]}
|
|
@ -1 +0,0 @@
|
|||||||
{"inputs":[],"outputs":[]}
|
|
@ -1 +0,0 @@
|
|||||||
{"inputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/program.dill","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.dill"],"outputs":[]}
|
|
@ -1 +0,0 @@
|
|||||||
{"inputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.yaml","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/package_config_subset","/Users/jin/development/flutter/packages/flutter_tools/lib/src/build_system/targets/common.dart","/Users/jin/development/flutter/bin/internal/engine.version","/Users/jin/development/flutter/bin/internal/engine.version","/Users/jin/development/flutter/bin/internal/engine.version","/Users/jin/development/flutter/bin/internal/engine.version"],"outputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.dill"]}
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.yaml:
|
|
@ -1 +0,0 @@
|
|||||||
{"inputs":["/Users/jin/development/flutter/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/package_config_subset"],"outputs":["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.yaml","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/.dart_tool/flutter_build/f5643b25d3bc5661572f9e478372c7a1/native_assets.yaml"]}
|
|
@ -1,5 +0,0 @@
|
|||||||
format-version:
|
|
||||||
- 1
|
|
||||||
- 0
|
|
||||||
- 0
|
|
||||||
native-assets: {}
|
|
@ -1 +0,0 @@
|
|||||||
["/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/assets/ic_default_avatar.png","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/assets/error.png","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/assets/success.png","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/assets/loading.png","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202302081049.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202407042149.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202109271118.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202204121518.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/sql.txt","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202204271423.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202209191624.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202302070951.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202208221824.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202208311840.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202206081753.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202204201627.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202211251048.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202211241110.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202206091626.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202208171346.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202008292051.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202204252144.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/packages/wukongimfluttersdk/assets/202112021532.sql","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.json","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json","/Users/jin/dev/Text/wukongimfluttersdk-1.5.8/example/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z"]
|
|
Binary file not shown.
@ -1,545 +0,0 @@
|
|||||||
{
|
|
||||||
"configVersion": 2,
|
|
||||||
"packages": [
|
|
||||||
{
|
|
||||||
"name": "adaptive_number",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/adaptive_number-1.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "args",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/args-2.6.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "asn1lib",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/asn1lib-1.5.8",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "async",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/async-2.11.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "boolean_selector",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/boolean_selector-2.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.17"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "characters",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/characters-1.3.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "clock",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/clock-1.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "collection",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/collection-1.18.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "connectivity",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity-3.0.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "connectivity_for_web",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_for_web-0.4.0+1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "connectivity_macos",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_macos-0.2.1+2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "connectivity_platform_interface",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_platform_interface-2.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "convert",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/convert-3.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "crypto",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/crypto-3.0.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "csslib",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/csslib-1.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "cupertino_icons",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/cupertino_icons-1.0.8",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dev_build",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dev_build-1.1.1+4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dio",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio-5.7.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dio_web_adapter",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio_web_adapter-2.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "encrypt",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encrypt-5.0.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "encryptions",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptions-1.1.0+1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "encryptor",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptor-0.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.15"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fake_async",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fake_async-1.3.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ffi",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ffi-2.1.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "file",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/file-7.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fixnum",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fixnum-1.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter",
|
|
||||||
"rootUri": "file:///Users/jin/development/flutter/packages/flutter",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_lints",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/flutter_lints-2.0.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.19"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_test",
|
|
||||||
"rootUri": "file:///Users/jin/development/flutter/packages/flutter_test",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "flutter_web_plugins",
|
|
||||||
"rootUri": "file:///Users/jin/development/flutter/packages/flutter_web_plugins",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "hex",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/hex-0.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "html",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/html-0.15.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "http",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http-1.2.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "http_parser",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http_parser-4.0.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "js",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/js-0.7.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker-10.0.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker_flutter_testing",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_flutter_testing-3.0.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "leak_tracker_testing",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_testing-3.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "lints",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/lints-2.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "matcher",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/matcher-0.12.16+1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "material_color_utilities",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/material_color_utilities-0.11.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.17"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "meta",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/meta-1.15.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ntp",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ntp-2.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path-1.9.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_linux",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_linux-2.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.19"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_platform_interface",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_platform_interface-2.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "path_provider_windows",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_windows-2.3.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "platform",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/platform-3.1.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "plugin_platform_interface",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/plugin_platform_interface-2.1.8",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pointycastle",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pointycastle-3.9.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pool",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pool-1.5.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "process_run",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/process_run-1.2.2+1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pub_semver",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pub_semver-2.1.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences-2.3.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_android",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_android-2.4.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_foundation",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_foundation-2.5.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_linux",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_linux-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_platform_interface",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_platform_interface-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_web",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_web-2.4.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "shared_preferences_windows",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_windows-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sky_engine",
|
|
||||||
"rootUri": "file:///Users/jin/development/flutter/bin/cache/pkg/sky_engine",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "source_span",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.10.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sprintf",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sprintf-7.0.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_android",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_android-2.4.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_common",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common-2.5.4+6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_common_ffi",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi-2.3.4+4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_common_ffi_web",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi_web-0.4.5+4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_darwin",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_darwin-2.4.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqflite_platform_interface",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_platform_interface-2.4.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sqlite3",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqlite3-2.5.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "stack_trace",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stack_trace-1.11.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "stream_channel",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stream_channel-2.1.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.19"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "string_scanner",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.2.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.18"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "synchronized",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/synchronized-3.3.0+3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "term_glyph",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.2.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test_api",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/test_api-0.7.2",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "typed_data",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/typed_data-1.4.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "uuid",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/uuid-4.5.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "vector_math",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.1.4",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.14"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "vm_service",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vm_service-14.2.5",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web-1.1.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web_socket",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket-0.1.6",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "web_socket_channel",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket_channel-3.0.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wukongimfluttersdk",
|
|
||||||
"rootUri": "../../",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "x25519",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/x25519-0.1.1",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.12"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "xdg_directories",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/xdg_directories-1.1.0",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "yaml",
|
|
||||||
"rootUri": "file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/yaml-3.1.3",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "3.4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "example",
|
|
||||||
"rootUri": "../",
|
|
||||||
"packageUri": "lib/",
|
|
||||||
"languageVersion": "2.17"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"generated": "2025-01-06T08:25:08.002643Z",
|
|
||||||
"generator": "pub",
|
|
||||||
"generatorVersion": "3.5.4",
|
|
||||||
"flutterRoot": "file:///Users/jin/development/flutter",
|
|
||||||
"flutterVersion": "3.24.4",
|
|
||||||
"pubCache": "file:///Users/jin/.pub-cache"
|
|
||||||
}
|
|
@ -1,357 +0,0 @@
|
|||||||
adaptive_number
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/adaptive_number-1.0.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/adaptive_number-1.0.0/lib/
|
|
||||||
args
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/args-2.6.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/args-2.6.0/lib/
|
|
||||||
asn1lib
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/asn1lib-1.5.8/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/asn1lib-1.5.8/lib/
|
|
||||||
async
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/async-2.11.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/async-2.11.0/lib/
|
|
||||||
boolean_selector
|
|
||||||
2.17
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/boolean_selector-2.1.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/boolean_selector-2.1.1/lib/
|
|
||||||
characters
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/characters-1.3.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/characters-1.3.0/lib/
|
|
||||||
clock
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/clock-1.1.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/clock-1.1.1/lib/
|
|
||||||
collection
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/collection-1.18.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/collection-1.18.0/lib/
|
|
||||||
connectivity
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity-3.0.6/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity-3.0.6/lib/
|
|
||||||
connectivity_for_web
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_for_web-0.4.0+1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_for_web-0.4.0+1/lib/
|
|
||||||
connectivity_macos
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_macos-0.2.1+2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_macos-0.2.1+2/lib/
|
|
||||||
connectivity_platform_interface
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_platform_interface-2.0.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/connectivity_platform_interface-2.0.1/lib/
|
|
||||||
convert
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/convert-3.1.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/convert-3.1.2/lib/
|
|
||||||
crypto
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/crypto-3.0.6/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/crypto-3.0.6/lib/
|
|
||||||
csslib
|
|
||||||
3.1
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/csslib-1.0.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/csslib-1.0.2/lib/
|
|
||||||
cupertino_icons
|
|
||||||
3.1
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/cupertino_icons-1.0.8/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/cupertino_icons-1.0.8/lib/
|
|
||||||
dev_build
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dev_build-1.1.1+4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dev_build-1.1.1+4/lib/
|
|
||||||
dio
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio-5.7.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio-5.7.0/lib/
|
|
||||||
dio_web_adapter
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio_web_adapter-2.0.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/dio_web_adapter-2.0.0/lib/
|
|
||||||
encrypt
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encrypt-5.0.3/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encrypt-5.0.3/lib/
|
|
||||||
encryptions
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptions-1.1.0+1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptions-1.1.0+1/lib/
|
|
||||||
encryptor
|
|
||||||
2.15
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptor-0.0.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/encryptor-0.0.1/lib/
|
|
||||||
fake_async
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fake_async-1.3.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fake_async-1.3.1/lib/
|
|
||||||
ffi
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ffi-2.1.3/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ffi-2.1.3/lib/
|
|
||||||
file
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/file-7.0.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/file-7.0.1/lib/
|
|
||||||
fixnum
|
|
||||||
3.1
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fixnum-1.1.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/fixnum-1.1.1/lib/
|
|
||||||
flutter_lints
|
|
||||||
2.19
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/flutter_lints-2.0.3/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/flutter_lints-2.0.3/lib/
|
|
||||||
hex
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/hex-0.2.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/hex-0.2.0/lib/
|
|
||||||
html
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/html-0.15.5/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/html-0.15.5/lib/
|
|
||||||
http
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http-1.2.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http-1.2.2/lib/
|
|
||||||
http_parser
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http_parser-4.0.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/http_parser-4.0.2/lib/
|
|
||||||
js
|
|
||||||
3.1
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/js-0.7.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/js-0.7.1/lib/
|
|
||||||
leak_tracker
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker-10.0.5/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker-10.0.5/lib/
|
|
||||||
leak_tracker_flutter_testing
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_flutter_testing-3.0.5/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_flutter_testing-3.0.5/lib/
|
|
||||||
leak_tracker_testing
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_testing-3.0.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/leak_tracker_testing-3.0.1/lib/
|
|
||||||
lints
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/lints-2.1.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/lints-2.1.1/lib/
|
|
||||||
matcher
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/matcher-0.12.16+1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/matcher-0.12.16+1/lib/
|
|
||||||
material_color_utilities
|
|
||||||
2.17
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/material_color_utilities-0.11.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/material_color_utilities-0.11.1/lib/
|
|
||||||
meta
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/meta-1.15.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/meta-1.15.0/lib/
|
|
||||||
ntp
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ntp-2.0.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/ntp-2.0.0/lib/
|
|
||||||
path
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path-1.9.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path-1.9.0/lib/
|
|
||||||
path_provider_linux
|
|
||||||
2.19
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_linux-2.2.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_linux-2.2.1/lib/
|
|
||||||
path_provider_platform_interface
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_platform_interface-2.1.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_platform_interface-2.1.2/lib/
|
|
||||||
path_provider_windows
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_windows-2.3.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/path_provider_windows-2.3.0/lib/
|
|
||||||
platform
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/platform-3.1.6/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/platform-3.1.6/lib/
|
|
||||||
plugin_platform_interface
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/plugin_platform_interface-2.1.8/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/plugin_platform_interface-2.1.8/lib/
|
|
||||||
pointycastle
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pointycastle-3.9.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pointycastle-3.9.1/lib/
|
|
||||||
pool
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pool-1.5.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pool-1.5.1/lib/
|
|
||||||
process_run
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/process_run-1.2.2+1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/process_run-1.2.2+1/lib/
|
|
||||||
pub_semver
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pub_semver-2.1.5/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/pub_semver-2.1.5/lib/
|
|
||||||
shared_preferences
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences-2.3.4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences-2.3.4/lib/
|
|
||||||
shared_preferences_android
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_android-2.4.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_android-2.4.0/lib/
|
|
||||||
shared_preferences_foundation
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_foundation-2.5.4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_foundation-2.5.4/lib/
|
|
||||||
shared_preferences_linux
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_linux-2.4.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_linux-2.4.1/lib/
|
|
||||||
shared_preferences_platform_interface
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_platform_interface-2.4.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_platform_interface-2.4.1/lib/
|
|
||||||
shared_preferences_web
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_web-2.4.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_web-2.4.2/lib/
|
|
||||||
shared_preferences_windows
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_windows-2.4.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/shared_preferences_windows-2.4.1/lib/
|
|
||||||
source_span
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.10.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/source_span-1.10.0/lib/
|
|
||||||
sprintf
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sprintf-7.0.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sprintf-7.0.0/lib/
|
|
||||||
sqflite
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite-2.4.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite-2.4.1/lib/
|
|
||||||
sqflite_android
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_android-2.4.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_android-2.4.0/lib/
|
|
||||||
sqflite_common
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common-2.5.4+6/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common-2.5.4+6/lib/
|
|
||||||
sqflite_common_ffi
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi-2.3.4+4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi-2.3.4+4/lib/
|
|
||||||
sqflite_common_ffi_web
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi_web-0.4.5+4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_common_ffi_web-0.4.5+4/lib/
|
|
||||||
sqflite_darwin
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_darwin-2.4.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_darwin-2.4.1/lib/
|
|
||||||
sqflite_platform_interface
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_platform_interface-2.4.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqflite_platform_interface-2.4.0/lib/
|
|
||||||
sqlite3
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqlite3-2.5.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/sqlite3-2.5.0/lib/
|
|
||||||
stack_trace
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stack_trace-1.11.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stack_trace-1.11.1/lib/
|
|
||||||
stream_channel
|
|
||||||
2.19
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stream_channel-2.1.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/stream_channel-2.1.2/lib/
|
|
||||||
string_scanner
|
|
||||||
2.18
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.2.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/string_scanner-1.2.0/lib/
|
|
||||||
synchronized
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/synchronized-3.3.0+3/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/synchronized-3.3.0+3/lib/
|
|
||||||
term_glyph
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.2.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/term_glyph-1.2.1/lib/
|
|
||||||
test_api
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/test_api-0.7.2/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/test_api-0.7.2/lib/
|
|
||||||
typed_data
|
|
||||||
3.5
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/typed_data-1.4.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/typed_data-1.4.0/lib/
|
|
||||||
uuid
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/uuid-4.5.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/uuid-4.5.1/lib/
|
|
||||||
vector_math
|
|
||||||
2.14
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.1.4/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vector_math-2.1.4/lib/
|
|
||||||
vm_service
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vm_service-14.2.5/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/vm_service-14.2.5/lib/
|
|
||||||
web
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web-1.1.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web-1.1.0/lib/
|
|
||||||
web_socket
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket-0.1.6/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket-0.1.6/lib/
|
|
||||||
web_socket_channel
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket_channel-3.0.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/web_socket_channel-3.0.1/lib/
|
|
||||||
x25519
|
|
||||||
2.12
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/x25519-0.1.1/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/x25519-0.1.1/lib/
|
|
||||||
xdg_directories
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/xdg_directories-1.1.0/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/xdg_directories-1.1.0/lib/
|
|
||||||
yaml
|
|
||||||
3.4
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/yaml-3.1.3/
|
|
||||||
file:///Users/jin/.pub-cache/hosted/pub.flutter-io.cn/yaml-3.1.3/lib/
|
|
||||||
wukongimfluttersdk
|
|
||||||
3.0
|
|
||||||
file:///Users/jin/dev/ssgf/wkim/
|
|
||||||
file:///Users/jin/dev/ssgf/wkim/lib/
|
|
||||||
example
|
|
||||||
2.17
|
|
||||||
file:///Users/jin/dev/ssgf/wkim/example/
|
|
||||||
file:///Users/jin/dev/ssgf/wkim/example/lib/
|
|
||||||
sky_engine
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/development/flutter/bin/cache/pkg/sky_engine/
|
|
||||||
file:///Users/jin/development/flutter/bin/cache/pkg/sky_engine/lib/
|
|
||||||
flutter
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter/
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter/lib/
|
|
||||||
flutter_test
|
|
||||||
3.3
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter_test/
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter_test/lib/
|
|
||||||
flutter_web_plugins
|
|
||||||
3.2
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter_web_plugins/
|
|
||||||
file:///Users/jin/development/flutter/packages/flutter_web_plugins/lib/
|
|
||||||
2
|
|
@ -1 +0,0 @@
|
|||||||
3.24.4
|
|
Loading…
x
Reference in New Issue
Block a user