1
This commit is contained in:
Zeus
2023-11-20 11:08:28 +08:00
parent 39a5f2fa92
commit f5f5f03537
31 changed files with 1337 additions and 21 deletions
@@ -0,0 +1 @@
{"version":2,"files":[{"path":"D:\\UUVPN\\flutter\\l10n.yaml","hash":"a84551d0b7dad37de8974f5ec96741f0"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","hash":"13b0f04cd30530772d65cdea1b71d355"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb","hash":"d3c32a02aa6851b40e2d1ef441836ab7"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\package_config_subset","hash":"d6117fe62426e62c4976948d57e4457e"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"c5e0dec6ad3ed06537232fefa5c3e897"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","hash":"f613890cdd3ba4f067d0c40f077e9fb3"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart","hash":"a378ae66620a8312108b7531a6fd5a72"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","hash":"1d5c329913a72e41fbfd4f51fb9c9438"},{"path":"E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","hash":"44f6e61783695000b20d4e1ad3dcc100"}]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\.dart_tool\\package_config_subset"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart: D:\\UUVPN\\flutter\\l10n.yaml D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb
@@ -0,0 +1 @@
{"inputs":["E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","D:\\UUVPN\\flutter\\l10n.yaml","D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,172 @@
//
// Generated file. Do not edit.
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
//
// @dart = 2.18
import 'dart:io'; // flutter_ignore: dart_io_import.
import 'package:path_provider_android/path_provider_android.dart';
import 'package:shared_preferences_android/shared_preferences_android.dart';
import 'package:url_launcher_android/url_launcher_android.dart';
import 'package:path_provider_ios/path_provider_ios.dart';
import 'package:shared_preferences_ios/shared_preferences_ios.dart';
import 'package:url_launcher_ios/url_launcher_ios.dart';
import 'package:path_provider_linux/path_provider_linux.dart';
import 'package:shared_preferences_linux/shared_preferences_linux.dart';
import 'package:url_launcher_linux/url_launcher_linux.dart';
import 'package:path_provider_macos/path_provider_macos.dart';
import 'package:shared_preferences_macos/shared_preferences_macos.dart';
import 'package:url_launcher_macos/url_launcher_macos.dart';
import 'package:path_provider_windows/path_provider_windows.dart';
import 'package:shared_preferences_windows/shared_preferences_windows.dart';
import 'package:url_launcher_windows/url_launcher_windows.dart';
@pragma('vm:entry-point')
class _PluginRegistrant {
@pragma('vm:entry-point')
static void register() {
if (Platform.isAndroid) {
try {
PathProviderAndroid.registerWith();
} catch (err) {
print(
'`path_provider_android` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
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 {
UrlLauncherAndroid.registerWith();
} catch (err) {
print(
'`url_launcher_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 {
PathProviderIOS.registerWith();
} catch (err) {
print(
'`path_provider_ios` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesIOS.registerWith();
} catch (err) {
print(
'`shared_preferences_ios` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherIOS.registerWith();
} catch (err) {
print(
'`url_launcher_ios` 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'
);
}
try {
UrlLauncherLinux.registerWith();
} catch (err) {
print(
'`url_launcher_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 {
PathProviderMacOS.registerWith();
} catch (err) {
print(
'`path_provider_macos` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesMacOS.registerWith();
} catch (err) {
print(
'`shared_preferences_macos` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherMacOS.registerWith();
} catch (err) {
print(
'`url_launcher_macos` 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'
);
}
try {
UrlLauncherWindows.registerWith();
} catch (err) {
print(
'`url_launcher_windows` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
}
}
@@ -0,0 +1,415 @@
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:intl/intl.dart' as intl;
import 'app_localizations_en.dart';
import 'app_localizations_zh.dart';
/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
/// Applications need to include `AppLocalizations.delegate()` in their app's
/// `localizationDelegates` list, and the locales they support in the app's
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'gen_l10n/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
/// supportedLocales: AppLocalizations.supportedLocales,
/// home: MyApplicationHome(),
/// );
/// ```
///
/// ## Update pubspec.yaml
///
/// Please make sure to update your pubspec.yaml to include the following
/// packages:
///
/// ```yaml
/// dependencies:
/// # Internationalization support.
/// flutter_localizations:
/// sdk: flutter
/// intl: any # Use the pinned version from flutter_localizations
///
/// # Rest of dependencies
/// ```
///
/// ## iOS Applications
///
/// iOS applications define key application metadata, including supported
/// locales, in an Info.plist file that is built into the application bundle.
/// To configure the locales supported by your app, youll need to edit this
/// file.
///
/// First, open your projects ios/Runner.xcworkspace Xcode workspace file.
/// Then, in the Project Navigator, open the Info.plist file under the Runner
/// projects Runner folder.
///
/// Next, select the Information Property List item, select Add Item from the
/// Editor menu, then select Localizations from the pop-up menu.
///
/// Select and expand the newly-created Localizations item then, for each
/// locale your application supports, add a new item and select the locale
/// you wish to add from the pop-up menu in the Value field. This list should
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
static AppLocalizations? of(BuildContext context) {
return Localizations.of<AppLocalizations>(context, AppLocalizations);
}
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
///
/// Returns a list of localizations delegates containing this delegate along with
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
/// and GlobalWidgetsLocalizations.delegate.
///
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale('en'),
Locale('zh')
];
/// Title for the Demo application
///
/// In en, this message translates to:
/// **'Flutter APP'**
String get title;
/// No description provided for @wodedingyue.
///
/// In en, this message translates to:
/// **'My Subscription'**
String get wodedingyue;
/// No description provided for @guoqi.
///
/// In en, this message translates to:
/// **'Expired'**
String get guoqi;
/// No description provided for @yiyong.
///
/// In en, this message translates to:
/// **'Used'**
String get yiyong;
/// No description provided for @zongji.
///
/// In en, this message translates to:
/// **'Total'**
String get zongji;
/// No description provided for @dinggoutaocan.
///
/// In en, this message translates to:
/// **'Sub Package'**
String get dinggoutaocan;
/// No description provided for @xuangou.
///
/// In en, this message translates to:
/// **'Buy'**
String get xuangou;
/// No description provided for @yidingyue.
///
/// In en, this message translates to:
/// **'Subscribed'**
String get yidingyue;
/// No description provided for @yilianjie.
///
/// In en, this message translates to:
/// **'Connected'**
String get yilianjie;
/// No description provided for @yiduankai.
///
/// In en, this message translates to:
/// **'Disconnected'**
String get yiduankai;
/// No description provided for @qingxiandenglu.
///
/// In en, this message translates to:
/// **'Please login first'**
String get qingxiandenglu;
/// No description provided for @qingxiandingyuetaocan.
///
/// In en, this message translates to:
/// **'Please subscribed first'**
String get qingxiandingyuetaocan;
/// No description provided for @taocanguoqichongxindingyue.
///
/// In en, this message translates to:
/// **'Package has expired, please subscribe again'**
String get taocanguoqichongxindingyue;
/// No description provided for @chagnqiyouxiao.
///
/// In en, this message translates to:
/// **'Subscribed Never Expires'**
String get chagnqiyouxiao;
/// No description provided for @renew.
///
/// In en, this message translates to:
/// **'View'**
String get renew;
/// No description provided for @welcome.
///
/// In en, this message translates to:
/// **'welcome'**
String get welcome;
/// No description provided for @logout.
///
/// In en, this message translates to:
/// **'logout'**
String get logout;
/// No description provided for @xuanzeliahjiedian.
///
/// In en, this message translates to:
/// **'Select Services'**
String get xuanzeliahjiedian;
/// No description provided for @yiduankai2.
///
/// In en, this message translates to:
/// **'Disconnected'**
String get yiduankai2;
/// No description provided for @pleaseenter.
///
/// In en, this message translates to:
/// **'Please enter the correct email address'**
String get pleaseenter;
/// No description provided for @passwordcan.
///
/// In en, this message translates to:
/// **'Password can not be null'**
String get passwordcan;
/// No description provided for @passwordcannot.
///
/// In en, this message translates to:
/// **'Password cannot be less than 6 characters'**
String get passwordcannot;
/// No description provided for @loginfailed.
///
/// In en, this message translates to:
/// **'Login failed, please try again'**
String get loginfailed;
/// No description provided for @registrationfailed.
///
/// In en, this message translates to:
/// **'Registration failed, please try again'**
String get registrationfailed;
/// No description provided for @mail.
///
/// In en, this message translates to:
/// **'Mail'**
String get mail;
/// No description provided for @password.
///
/// In en, this message translates to:
/// **'Password'**
String get password;
/// No description provided for @zhengzailinajie.
///
/// In en, this message translates to:
/// **'Connecting, please wait...'**
String get zhengzailinajie;
/// No description provided for @zhengzaiduankailianjie.
///
/// In en, this message translates to:
/// **'Disconnecting, please wait...'**
String get zhengzaiduankailianjie;
/// No description provided for @confirmpassword.
///
/// In en, this message translates to:
/// **'Confirm Password'**
String get confirmpassword;
/// No description provided for @twopasswords.
///
/// In en, this message translates to:
/// **'Two passwords do not match'**
String get twopasswords;
/// No description provided for @forgetthepassword.
///
/// In en, this message translates to:
/// **'Forget the password?'**
String get forgetthepassword;
/// No description provided for @login.
///
/// In en, this message translates to:
/// **'Login'**
String get login;
/// No description provided for @register.
///
/// In en, this message translates to:
/// **'Register'**
String get register;
/// No description provided for @resetpassword.
///
/// In en, this message translates to:
/// **'Reset Password'**
String get resetpassword;
/// No description provided for @sure.
///
/// In en, this message translates to:
/// **'Sure'**
String get sure;
/// No description provided for @thesystemwill.
///
/// In en, this message translates to:
/// **'The system will send a reset password email to your mailbox, please pay attention to check it'**
String get thesystemwill;
/// No description provided for @sentsuccessfully.
///
/// In en, this message translates to:
/// **'Sent successfully'**
String get sentsuccessfully;
/// No description provided for @returnstring.
///
/// In en, this message translates to:
/// **'Return'**
String get returnstring;
/// No description provided for @qingxuanzefuwqjiedian.
///
/// In en, this message translates to:
/// **'Please select a server node'**
String get qingxuanzefuwqjiedian;
/// No description provided for @pingallnodes.
///
/// In en, this message translates to:
/// **'Click Ping All'**
String get pingallnodes;
/// No description provided for @timeout.
///
/// In en, this message translates to:
/// **'timeout'**
String get timeout;
/// No description provided for @alertsss.
///
/// In en, this message translates to:
/// **'alert'**
String get alertsss;
/// No description provided for @wanttoexit.
///
/// In en, this message translates to:
/// **'Are you sure you want to exit?'**
String get wanttoexit;
/// No description provided for @cancelss.
///
/// In en, this message translates to:
/// **'cancel'**
String get cancelss;
/// No description provided for @exitout.
///
/// In en, this message translates to:
/// **'exit'**
String get exitout;
/// No description provided for @clicktoselectanothernode.
///
/// In en, this message translates to:
/// **'Click to select another node'**
String get clicktoselectanothernode;
/// No description provided for @nodefornullcheckissubscripts.
///
/// In en, this message translates to:
/// **'The Service list is empty, \nPlease Login first.'**
String get nodefornullcheckissubscripts;
/// No description provided for @foreveryfree1.
///
/// In en, this message translates to:
/// **'Notable features of UU: \n * No credit card required\n * You can try premium features for free for 7 days \n* Do not keep any user logs\n* Simple, one-click connection VPN\n* Automatically connects you to the fastest VPN server'**
String get foreveryfree1;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
const _AppLocalizationsDelegate();
@override
Future<AppLocalizations> load(Locale locale) {
return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
}
@override
bool isSupported(Locale locale) => <String>['en', 'zh'].contains(locale.languageCode);
@override
bool shouldReload(_AppLocalizationsDelegate old) => false;
}
AppLocalizations lookupAppLocalizations(Locale locale) {
// Lookup logic when only language code is specified.
switch (locale.languageCode) {
case 'en': return AppLocalizationsEn();
case 'zh': return AppLocalizationsZh();
}
throw FlutterError(
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.'
);
}
@@ -0,0 +1,150 @@
import 'app_localizations.dart';
/// The translations for English (`en`).
class AppLocalizationsEn extends AppLocalizations {
AppLocalizationsEn([String locale = 'en']) : super(locale);
@override
String get title => 'Flutter APP';
@override
String get wodedingyue => 'My Subscription';
@override
String get guoqi => 'Expired';
@override
String get yiyong => 'Used';
@override
String get zongji => 'Total';
@override
String get dinggoutaocan => 'Sub Package';
@override
String get xuangou => 'Buy';
@override
String get yidingyue => 'Subscribed';
@override
String get yilianjie => 'Connected';
@override
String get yiduankai => 'Disconnected';
@override
String get qingxiandenglu => 'Please login first';
@override
String get qingxiandingyuetaocan => 'Please subscribed first';
@override
String get taocanguoqichongxindingyue => 'Package has expired, please subscribe again';
@override
String get chagnqiyouxiao => 'Subscribed Never Expires';
@override
String get renew => 'View';
@override
String get welcome => 'welcome';
@override
String get logout => 'logout';
@override
String get xuanzeliahjiedian => 'Select Services';
@override
String get yiduankai2 => 'Disconnected';
@override
String get pleaseenter => 'Please enter the correct email address';
@override
String get passwordcan => 'Password can not be null';
@override
String get passwordcannot => 'Password cannot be less than 6 characters';
@override
String get loginfailed => 'Login failed, please try again';
@override
String get registrationfailed => 'Registration failed, please try again';
@override
String get mail => 'Mail';
@override
String get password => 'Password';
@override
String get zhengzailinajie => 'Connecting, please wait...';
@override
String get zhengzaiduankailianjie => 'Disconnecting, please wait...';
@override
String get confirmpassword => 'Confirm Password';
@override
String get twopasswords => 'Two passwords do not match';
@override
String get forgetthepassword => 'Forget the password?';
@override
String get login => 'Login';
@override
String get register => 'Register';
@override
String get resetpassword => 'Reset Password';
@override
String get sure => 'Sure';
@override
String get thesystemwill => 'The system will send a reset password email to your mailbox, please pay attention to check it';
@override
String get sentsuccessfully => 'Sent successfully';
@override
String get returnstring => 'Return';
@override
String get qingxuanzefuwqjiedian => 'Please select a server node';
@override
String get pingallnodes => 'Click Ping All';
@override
String get timeout => 'timeout';
@override
String get alertsss => 'alert';
@override
String get wanttoexit => 'Are you sure you want to exit?';
@override
String get cancelss => 'cancel';
@override
String get exitout => 'exit';
@override
String get clicktoselectanothernode => 'Click to select another node';
@override
String get nodefornullcheckissubscripts => 'The Service list is empty, \nPlease Login first.';
@override
String get foreveryfree1 => 'Notable features of UU: \n * No credit card required\n * You can try premium features for free for 7 days \n* Do not keep any user logs\n* Simple, one-click connection VPN\n* Automatically connects you to the fastest VPN server';
}
@@ -0,0 +1,150 @@
import 'app_localizations.dart';
/// The translations for Chinese (`zh`).
class AppLocalizationsZh extends AppLocalizations {
AppLocalizationsZh([String locale = 'zh']) : super(locale);
@override
String get title => 'Flutter APP';
@override
String get wodedingyue => '我的订阅';
@override
String get guoqi => '过期';
@override
String get yiyong => '已用';
@override
String get zongji => '总计';
@override
String get dinggoutaocan => '订阅套餐';
@override
String get xuangou => '购买';
@override
String get yidingyue => '已订购';
@override
String get yilianjie => '已连接';
@override
String get yiduankai => '已断开连接';
@override
String get qingxiandenglu => '请先登录';
@override
String get qingxiandingyuetaocan => '请先订阅下方套餐';
@override
String get taocanguoqichongxindingyue => '套餐已过期,请重新订阅';
@override
String get chagnqiyouxiao => '长期有效';
@override
String get renew => '查看';
@override
String get welcome => '欢迎光临';
@override
String get logout => '退出';
@override
String get xuanzeliahjiedian => '选择连接节点';
@override
String get yiduankai2 => '已断开连接';
@override
String get pleaseenter => '请输入正确邮箱';
@override
String get passwordcan => '密码不能为空';
@override
String get passwordcannot => '密码不能小于6位';
@override
String get loginfailed => '登陆失败,请重试';
@override
String get registrationfailed => '注册失败,请重试';
@override
String get mail => '邮箱';
@override
String get password => '密码';
@override
String get zhengzailinajie => '正在连接中,请稍后...';
@override
String get zhengzaiduankailianjie => '正在断开中,请稍后...';
@override
String get confirmpassword => '确定密码';
@override
String get twopasswords => '两次密码不匹配';
@override
String get forgetthepassword => '忘记密码?';
@override
String get login => '登录';
@override
String get register => '注册';
@override
String get resetpassword => '重置密码';
@override
String get sure => '确定';
@override
String get thesystemwill => '系统将向您的邮箱发送一封重置密码邮件,请注意查收';
@override
String get sentsuccessfully => '发送成功';
@override
String get returnstring => '返回';
@override
String get qingxuanzefuwqjiedian => '请选择服务器节点';
@override
String get pingallnodes => '点击Ping所有节点';
@override
String get timeout => '超时';
@override
String get alertsss => '提示';
@override
String get wanttoexit => '确定退出吗?';
@override
String get cancelss => '取消';
@override
String get exitout => '退出';
@override
String get clicktoselectanothernode => '点击选择其他节点';
@override
String get nodefornullcheckissubscripts => '节点列表为空,请确认是否已经订阅 ';
@override
String get foreveryfree1 => 'Notable features of UU: \n * No credit card required\n * You can try premium features for free for 7 days \n* Do not keep any user logs\n* Simple, one-click connection VPN\n* Automatically connects you to the fastest VPN server';
}
@@ -0,0 +1,3 @@
# Generated by the flutter tool
name: synthetic_package
description: The Flutter application's synthetic package.
File diff suppressed because one or more lines are too long
+377
View File
@@ -0,0 +1,377 @@
another_flushbar
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/another_flushbar-1.12.29/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/another_flushbar-1.12.29/lib/
another_transformer_page_view
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/another_transformer_page_view-2.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/another_transformer_page_view-2.0.1/lib/
async
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib/
boolean_selector
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/
characters
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib/
clock
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/
collection
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/lib/
convert
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/
crisp
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/crisp-0.3.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/crisp-0.3.1/lib/
crypto
2.19
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/
cupertino_icons
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.5/lib/
dio
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/dio-4.0.6/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/dio-4.0.6/lib/
fake_async
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/
ffi
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.0.1/lib/
file
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/file-6.1.4/lib/
fluro
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fluro-2.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fluro-2.0.4/lib/
flutter_easyrefresh
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_easyrefresh-2.2.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_easyrefresh-2.2.2/lib/
flutter_icmp_ping
2.16
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_icmp_ping-3.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_icmp_ping-3.1.1/lib/
flutter_inappwebview
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_inappwebview-5.7.2+2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_inappwebview-5.7.2+2/lib/
flutter_lints
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.1/lib/
flutter_login
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_login-4.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_login-4.1.1/lib/
flutter_screenutil
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_screenutil-5.8.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_screenutil-5.8.2/lib/
flutter_svg
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_svg-0.23.0+1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_svg-0.23.0+1/lib/
flutter_swiper_plus
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_swiper_plus-2.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_swiper_plus-2.0.4/lib/
fluttertoast
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.1.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/fluttertoast-8.1.2/lib/
font_awesome_flutter
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/font_awesome_flutter-10.4.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/font_awesome_flutter-10.4.0/lib/
get
2.15
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/get-4.6.5/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/get-4.6.5/lib/
google_fonts
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/google_fonts-5.0.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/google_fonts-5.0.0/lib/
http
3.0
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.0.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.0.0/lib/
http_parser
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/
intl
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/lib/
lints
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.0.1/lib/
matcher
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib/
material_color_utilities
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/
meta
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib/
modal_bottom_sheet
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/modal_bottom_sheet-3.0.0-pre/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/modal_bottom_sheet-3.0.0-pre/lib/
nested
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/nested-1.0.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/nested-1.0.0/lib/
path
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib/
path_drawing
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_drawing-0.5.1+1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_drawing-0.5.1+1/lib/
path_parsing
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_parsing-0.2.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_parsing-0.2.1/lib/
path_provider
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.11/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.0.11/lib/
path_provider_android
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.22/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.0.22/lib/
path_provider_ios
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_ios-2.0.11/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_ios-2.0.11/lib/
path_provider_linux
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.7/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.1.7/lib/
path_provider_macos
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_macos-2.0.6/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_macos-2.0.6/lib/
path_provider_platform_interface
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.5/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.0.5/lib/
path_provider_windows
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.3/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.1.3/lib/
petitparser
2.19
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/petitparser-5.4.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/petitparser-5.4.0/lib/
platform
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.0/lib/
plugin_platform_interface
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.3/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.3/lib/
process
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/process-4.2.4/lib/
provider
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/provider-6.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/provider-6.0.4/lib/
quiver
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/quiver-3.1.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/quiver-3.1.0/lib/
shared_preferences
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.0.15/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.0.15/lib/
shared_preferences_android
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.0.14/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.0.14/lib/
shared_preferences_ios
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_ios-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_ios-2.1.1/lib/
shared_preferences_linux
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.1.1/lib/
shared_preferences_macos
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_macos-2.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_macos-2.0.4/lib/
shared_preferences_platform_interface
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.1.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.1.0/lib/
shared_preferences_web
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.0.4/lib/
shared_preferences_windows
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.1.1/lib/
sign_in_button
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/sign_in_button-3.2.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/sign_in_button-3.2.0/lib/
source_span
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/lib/
stack_trace
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/
stream_channel
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/
string_scanner
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/
sync_http
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/sync_http-0.3.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/sync_http-0.3.1/lib/
synchronized
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/synchronized-3.1.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/synchronized-3.1.0/lib/
term_glyph
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/
test_api
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/lib/
typed_data
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.1/lib/
url_launcher
2.18
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher-6.1.11/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher-6.1.11/lib/
url_launcher_android
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_android-6.0.22/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_android-6.0.22/lib/
url_launcher_ios
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_ios-6.0.17/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_ios-6.0.17/lib/
url_launcher_linux
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_linux-3.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_linux-3.0.1/lib/
url_launcher_macos
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_macos-3.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_macos-3.0.1/lib/
url_launcher_platform_interface
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_platform_interface-2.1.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_platform_interface-2.1.1/lib/
url_launcher_web
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_web-2.0.13/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_web-2.0.13/lib/
url_launcher_windows
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_windows-3.0.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_windows-3.0.1/lib/
vector_math
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/
web
3.1
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/lib/
webview_flutter
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter-3.0.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter-3.0.4/lib/
webview_flutter_android
2.14
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_android-2.10.4/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_android-2.10.4/lib/
webview_flutter_platform_interface
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_platform_interface-1.9.5/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_platform_interface-1.9.5/lib/
webview_flutter_wkwebview
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_wkwebview-2.9.5/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/webview_flutter_wkwebview-2.9.5/lib/
win32
2.17
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/win32-3.1.2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/win32-3.1.2/lib/
xdg_directories
2.12
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-0.2.0+2/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-0.2.0+2/lib/
xml
2.16
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/xml-5.4.1/
file:///C:/Users/123/AppData/Local/Pub/Cache/hosted/pub.dev/xml-5.4.1/lib/
sail
2.18
file:///D:/UUVPN/flutter/
file:///D:/UUVPN/flutter/lib/
sky_engine
3.0
file:///E:/Flutter/flutter/bin/cache/pkg/sky_engine/
file:///E:/Flutter/flutter/bin/cache/pkg/sky_engine/lib/
flutter
3.0
file:///E:/Flutter/flutter/packages/flutter/
file:///E:/Flutter/flutter/packages/flutter/lib/
flutter_localizations
3.0
file:///E:/Flutter/flutter/packages/flutter_localizations/
file:///E:/Flutter/flutter/packages/flutter_localizations/lib/
flutter_test
3.0
file:///E:/Flutter/flutter/packages/flutter_test/
file:///E:/Flutter/flutter/packages/flutter_test/lib/
flutter_web_plugins
3.0
file:///E:/Flutter/flutter/packages/flutter_web_plugins/
file:///E:/Flutter/flutter/packages/flutter_web_plugins/lib/
2
+1
View File
@@ -0,0 +1 @@
3.13.4
+27
View File
@@ -0,0 +1,27 @@
# This is a generated file; do not edit or check into version control.
flutter_icmp_ping=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_icmp_ping-3.1.1\\
flutter_inappwebview=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_inappwebview-5.7.2+2\\
fluttertoast=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fluttertoast-8.1.2\\
path_provider=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.0.11\\
path_provider_android=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.0.22\\
path_provider_ios=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_ios-2.0.11\\
path_provider_linux=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.1.7\\
path_provider_macos=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_macos-2.0.6\\
path_provider_windows=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.1.3\\
shared_preferences=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences-2.0.15\\
shared_preferences_android=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_android-2.0.14\\
shared_preferences_ios=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_ios-2.1.1\\
shared_preferences_linux=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_linux-2.1.1\\
shared_preferences_macos=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_macos-2.0.4\\
shared_preferences_web=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_web-2.0.4\\
shared_preferences_windows=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_windows-2.1.1\\
url_launcher=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.1.11\\
url_launcher_android=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.0.22\\
url_launcher_ios=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.0.17\\
url_launcher_linux=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.0.1\\
url_launcher_macos=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.0.1\\
url_launcher_web=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.0.13\\
url_launcher_windows=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.0.1\\
webview_flutter=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\webview_flutter-3.0.4\\
webview_flutter_android=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\webview_flutter_android-2.10.4\\
webview_flutter_wkwebview=C:\\Users\\123\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\webview_flutter_wkwebview-2.9.5\\
File diff suppressed because one or more lines are too long
+1
View File
@@ -0,0 +1 @@
f51f5c3bcecb0339dc02189e9dd2c2c8
@@ -0,0 +1 @@
{"inputs":[],"outputs":[]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\.dart_tool\\package_config_subset"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart: D:\\UUVPN\\flutter\\l10n.yaml D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb
@@ -0,0 +1 @@
{"inputs":["E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","D:\\UUVPN\\flutter\\l10n.yaml","D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
598ad26b2a28688b8a63d2ce5f39c7ce
@@ -0,0 +1 @@
{"version":2,"files":[{"path":"D:\\UUVPN\\flutter\\l10n.yaml","hash":"a84551d0b7dad37de8974f5ec96741f0"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","hash":"13b0f04cd30530772d65cdea1b71d355"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb","hash":"d3c32a02aa6851b40e2d1ef441836ab7"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","hash":"f613890cdd3ba4f067d0c40f077e9fb3"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","hash":"1d5c329913a72e41fbfd4f51fb9c9438"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart","hash":"a378ae66620a8312108b7531a6fd5a72"},{"path":"E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","hash":"44f6e61783695000b20d4e1ad3dcc100"}]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart: D:\\UUVPN\\flutter\\l10n.yaml D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb
@@ -0,0 +1 @@
{"inputs":["E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","D:\\UUVPN\\flutter\\l10n.yaml","D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
[]
+21 -21
View File
@@ -53,10 +53,10 @@ packages:
dependency: transitive
description:
name: collection
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
url: "https://pub.dev"
source: hosted
version: "1.17.1"
version: "1.17.2"
convert:
dependency: "direct main"
description:
@@ -265,18 +265,10 @@ packages:
dependency: "direct main"
description:
name: intl
sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6
sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d"
url: "https://pub.dev"
source: hosted
version: "0.18.0"
js:
dependency: transitive
description:
name: js
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
url: "https://pub.dev"
source: hosted
version: "0.6.7"
version: "0.18.1"
lints:
dependency: transitive
description:
@@ -289,18 +281,18 @@ packages:
dependency: transitive
description:
name: matcher
sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb"
sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e"
url: "https://pub.dev"
source: hosted
version: "0.12.15"
version: "0.12.16"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
url: "https://pub.dev"
source: hosted
version: "0.2.0"
version: "0.5.0"
meta:
dependency: "direct main"
description:
@@ -534,10 +526,10 @@ packages:
dependency: transitive
description:
name: source_span
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
url: "https://pub.dev"
source: hosted
version: "1.9.1"
version: "1.10.0"
stack_trace:
dependency: transitive
description:
@@ -590,10 +582,10 @@ packages:
dependency: transitive
description:
name: test_api
sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
url: "https://pub.dev"
source: hosted
version: "0.5.1"
version: "0.6.0"
typed_data:
dependency: transitive
description:
@@ -674,6 +666,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.1.4"
web:
dependency: transitive
description:
name: web
sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
url: "https://pub.dev"
source: hosted
version: "0.1.4-beta"
webview_flutter:
dependency: "direct main"
description:
@@ -731,5 +731,5 @@ packages:
source: hosted
version: "5.4.1"
sdks:
dart: ">=3.0.0 <4.0.0"
dart: ">=3.1.0-185.0.dev <4.0.0"
flutter: ">=3.10.0"