Compare commits

..

34 Commits

Author SHA1 Message Date
chen08209
a5fdb90da5 optimize delayTest 2024-05-17 19:54:26 +08:00
chen08209
f9722cc761 upgrade flutter version
(cherry picked from commit 9a07c785f2)
2024-05-17 09:35:22 +08:00
chen08209
f01fb2ed1d Update kernel
Add import profile via QR code image
2024-05-15 20:19:50 +08:00
chen08209
74f4481071 Add compatibility mode and adapt clash scheme. 2024-05-11 14:08:13 +08:00
chen08209
9018f512ae Reconstruction application proxy logic 2024-05-07 17:59:11 +08:00
chen08209
265fc4a701 Fix Tab destroy error 2024-05-06 19:03:49 +08:00
chen08209
755974fc9e Optimize repeat healthcheck 2024-05-06 17:15:42 +08:00
chen08209
ba8eab4fc9 Optimize Direct mode ui 2024-05-06 15:26:38 +08:00
chen08209
f5cb46710f Optimize Healthcheck 2024-05-06 14:31:20 +08:00
chen08209
6483e80416 Remove proxies position animation, improve performance
Add Telegram Link
2024-05-06 14:31:19 +08:00
chen08209
535e6dc3a5 Update healthcheck policy 2024-05-06 14:31:19 +08:00
chen08209
ad86c20cfb New Check URLTest 2024-05-05 21:40:12 +08:00
chen08209
665330e17a Fix the problem of invalid auto-selection 2024-05-05 16:13:52 +08:00
chen08209
0eb001e717 New Async UpdateConfig 2024-05-05 03:12:45 +08:00
chen08209
a563991d74 add changeProfileDebounce 2024-05-04 21:51:40 +08:00
chen08209
3e2a30008c Update Workflow 2024-05-04 16:50:37 +08:00
chen08209
ff68d573d6 Fix ChangeProfile block 2024-05-04 16:39:21 +08:00
chen08209
3223fca7ba Fix Release Message Error
(cherry picked from commit aef50fe0e3)
2024-05-04 16:38:03 +08:00
chen08209
006f9127fc Update Selector 2
(cherry picked from commit fc0767ed25)
2024-05-04 16:37:59 +08:00
chen08209
a2709e155c Update Version
(cherry picked from commit dbf1724cca)
2024-05-04 16:37:57 +08:00
chen08209
684fa7b58e Fix Proxies Select Error
(cherry picked from commit 909aa4038e)
2024-05-04 16:37:55 +08:00
chen08209
03b4da54b5 Fix the problem that the proxy group is empty in global mode.
(cherry picked from commit 2d0a7d8d46)
2024-05-04 16:37:54 +08:00
chen08209
a904b55d11 Fix the problem that the proxy group is empty in global mode.
(cherry picked from commit ca96cd1d82)
2024-05-04 16:37:54 +08:00
chen08209
d711935e2e Add ProxyProvider2
(cherry picked from commit 91ab1e5dac)
2024-05-04 16:37:53 +08:00
chen08209
98b1496eff Add ProxyProvider
(cherry picked from commit b3a5f74df8)
2024-05-03 21:28:41 +08:00
chen08209
442c32b6eb Update Version 2024-05-03 15:32:12 +08:00
chen08209
949a2aaac3 Update ProxyGroup Sort 2024-05-03 14:31:10 +08:00
chen08209
c77463f337 Fix Android quickStart VpnService some problems 2024-05-02 00:46:42 +08:00
chen08209
00377d6070 Update version 2024-05-01 23:39:21 +08:00
chen08209
f393b4b3e9 Set Android notification low importance 2024-05-01 23:29:32 +08:00
chen08209
75e6cfde15 Add Telegram in README_zh_CN.md
(cherry picked from commit 8a188a37c9)
2024-05-01 21:52:22 +08:00
chen08209
7bfe5617d9 Add Telegram 2024-05-01 21:49:18 +08:00
chen08209
97cc96c243 Fix the issue that VpnService can't be closed correctly in special cases 2024-05-01 21:29:54 +08:00
chen08209
1821ee2f61 Fix the problem that TileService is not destroyed correctly in some cases
Adjust tab animation defaults
2024-05-01 15:13:09 +08:00
66 changed files with 1576 additions and 3020 deletions

View File

@@ -23,7 +23,6 @@
<application <application
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:networkSecurityConfig="@xml/network_security_config"
android:label="FlClash"> android:label="FlClash">
<activity <activity
android:name="com.follow.clash.MainActivity" android:name="com.follow.clash.MainActivity"

View File

@@ -52,7 +52,6 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) { override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
channel.setMethodCallHandler(null) channel.setMethodCallHandler(null)
} }
private fun tip(message: String?) { private fun tip(message: String?) {
if (toast != null) { if (toast != null) {
toast!!.cancel() toast!!.cancel()
@@ -147,9 +146,9 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
val packageManager = context?.packageManager val packageManager = context?.packageManager
val packages: List<Package>? = val packages: List<Package>? =
packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter { packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter {
it.packageName != context?.packageName it.packageName == context?.packageName
|| it.requestedPermissions?.contains(Manifest.permission.INTERNET) == true || it.requestedPermissions?.contains(Manifest.permission.INTERNET) == false
|| it.packageName == "android" || it.packageName != "android"
}?.map { }?.map {
Package( Package(

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config xmlns:tools="http://schemas.android.com/tools"
tools:ignore="AcceptsUserCertificates">
<base-config>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>

View File

@@ -53,15 +53,6 @@ class Application extends StatefulWidget {
class ApplicationState extends State<Application> { class ApplicationState extends State<Application> {
late SystemColorSchemes systemColorSchemes; late SystemColorSchemes systemColorSchemes;
final _pageTransitionsTheme = const PageTransitionsTheme(
builders: <TargetPlatform, PageTransitionsBuilder>{
TargetPlatform.android: CupertinoPageTransitionsBuilder(),
TargetPlatform.windows: CupertinoPageTransitionsBuilder(),
TargetPlatform.linux: CupertinoPageTransitionsBuilder(),
TargetPlatform.macOS: CupertinoPageTransitionsBuilder(),
},
);
ColorScheme _getAppColorScheme({ ColorScheme _getAppColorScheme({
required Brightness brightness, required Brightness brightness,
int? primaryColor, int? primaryColor,
@@ -82,7 +73,6 @@ class ApplicationState extends State<Application> {
super.initState(); super.initState();
globalState.appController = AppController(context); globalState.appController = AppController(context);
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async { WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
globalState.appController.updateViewWidth();
globalState.appController.afterInit(); globalState.appController.afterInit();
globalState.appController.initLink(); globalState.appController.initLink();
_updateGroups(); _updateGroups();
@@ -124,7 +114,7 @@ class ApplicationState extends State<Application> {
globalState.groupsUpdateTimer = null; globalState.groupsUpdateTimer = null;
} }
globalState.groupsUpdateTimer ??= Timer.periodic( globalState.groupsUpdateTimer ??= Timer.periodic(
httpTimeoutDuration, appConstant.httpTimeoutDuration,
(timer) async { (timer) async {
await globalState.appController.updateGroups(); await globalState.appController.updateGroups();
globalState.appController.appState.sortNum++; globalState.appController.appState.sortNum++;
@@ -155,13 +145,12 @@ class ApplicationState extends State<Application> {
GlobalCupertinoLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate GlobalWidgetsLocalizations.delegate
], ],
title: appName, title: appConstant.name,
locale: other.getLocaleForString(state.locale), locale: other.getLocaleForString(state.locale),
supportedLocales: supportedLocales:
AppLocalizations.delegate.supportedLocales, AppLocalizations.delegate.supportedLocales,
themeMode: state.themeMode, themeMode: state.themeMode,
theme: ThemeData( theme: ThemeData(
pageTransitionsTheme: _pageTransitionsTheme,
useMaterial3: true, useMaterial3: true,
colorScheme: _getAppColorScheme( colorScheme: _getAppColorScheme(
brightness: Brightness.light, brightness: Brightness.light,
@@ -171,7 +160,6 @@ class ApplicationState extends State<Application> {
), ),
darkTheme: ThemeData( darkTheme: ThemeData(
useMaterial3: true, useMaterial3: true,
pageTransitionsTheme: _pageTransitionsTheme,
colorScheme: _getAppColorScheme( colorScheme: _getAppColorScheme(
brightness: Brightness.dark, brightness: Brightness.dark,
systemColorSchemes: systemColorSchemes, systemColorSchemes: systemColorSchemes,

View File

@@ -140,7 +140,7 @@ class ClashCore {
bool delay(String proxyName) { bool delay(String proxyName) {
final delayParams = { final delayParams = {
"proxy-name": proxyName, "proxy-name": proxyName,
"timeout": httpTimeoutDuration.inMilliseconds, "timeout": appConstant.httpTimeoutDuration.inMilliseconds,
}; };
clashFFI.asyncTestDelay(json.encode(delayParams).toNativeUtf8().cast()); clashFFI.asyncTestDelay(json.encode(delayParams).toNativeUtf8().cast());
return true; return true;

View File

@@ -3,25 +3,28 @@ import 'dart:ui';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
const appName = "FlClash"; const appName = "FlClash";
const coreName = "clash.meta";
const packageName = "FlClash";
const httpTimeoutDuration = Duration(milliseconds: 5000);
const moreDuration = Duration(milliseconds: 100);
const defaultUpdateDuration = Duration(days: 1);
const mmdbFileName = "geoip.metadb";
const profilesDirectoryName = "profiles";
const localhost = "127.0.0.1";
const clashConfigKey = "clash_config";
const configKey = "config";
const listItemPadding = EdgeInsets.symmetric(horizontal: 16);
const double dialogCommonWidth = 300;
const repository = "chen08209/FlClash";
const maxMobileWidth = 600;
const maxLaptopWidth = 840;
final filter = ImageFilter.blur(
sigmaX: 5,
sigmaY: 5,
tileMode: TileMode.mirror,
);
const defaultPrimaryColor = Colors.brown; class AppConstant {
final packageName = "com.follow.clash";
final name = "FlClash";
final httpTimeoutDuration = const Duration(milliseconds: 5000);
final moreDuration = const Duration(milliseconds: 100);
final defaultUpdateDuration = const Duration(days: 1);
final mmdbFileName = "geoip.metadb";
final profilesDirectoryName = "profiles";
final configFileName = "config.yaml";
final localhost = "127.0.0.1";
final clashKey = "clash";
final configKey = "config";
final listItemPadding = const EdgeInsets.symmetric(horizontal: 16);
final dialogCommonWidth = 300;
final repository = "chen08209/FlClash";
final filter = ImageFilter.blur(
sigmaX: 5,
sigmaY: 5,
tileMode: TileMode.mirror,
);
final defaultPrimaryColor = Colors.brown;
}
final appConstant = AppConstant();

View File

@@ -11,6 +11,8 @@ extension BuildContextExtension on BuildContext {
return MediaQuery.of(this).size.width; return MediaQuery.of(this).size.width;
} }
bool get isMobile => width < 600;
ColorScheme get colorScheme => Theme.of(this).colorScheme; ColorScheme get colorScheme => Theme.of(this).colorScheme;
TextTheme get textTheme => Theme.of(this).textTheme; TextTheme get textTheme => Theme.of(this).textTheme;

View File

@@ -1,107 +0,0 @@
import 'dart:async';
import 'dart:convert';
import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/state.dart';
import 'package:path/path.dart';
import 'package:webdav_client/webdav_client.dart';
class DAVClient {
late Client client;
Completer<bool> pingCompleter = Completer();
DAVClient(DAV dav) {
client = newClient(
dav.uri,
user: dav.user,
password: dav.password,
);
client.setHeaders(
{
'accept-charset': 'utf-8',
'Content-Type': 'text/xml',
},
);
client.setConnectTimeout(8000);
client.setSendTimeout(8000);
client.setReceiveTimeout(8000);
pingCompleter.complete(_ping());
}
Future<bool> _ping() async {
try {
await client.ping();
await client.mkdir("/$appName");
await client.mkdir("/$appName/$profilesDirectoryName");
return true;
} catch (_) {
return false;
}
}
get root => "/$appName";
get remoteConfig => "$root/$configKey.json";
get remoteClashConfig => "$root/$clashConfigKey.json";
get remoteProfiles => "$root/$profilesDirectoryName";
backup() async {
final appController = globalState.appController;
final config = appController.config;
final clashConfig = appController.clashConfig;
await client.mkdir("$root");
client.write(
remoteConfig,
utf8.encode(
json.encode(config.toJson()),
),
);
client.write(
remoteClashConfig,
utf8.encode(
json.encode(clashConfig.toJson()),
),
);
await client.remove(remoteProfiles);
for (final profile in config.profiles) {
final path = await appPath.getProfilePath(profile.id);
if (path == null) continue;
await client.writeFromFile(
path,
"$remoteProfiles/${basename(path)}",
);
}
return true;
}
recovery({required RecoveryOption recoveryOption}) async {
final profiles = await client.readDir(remoteProfiles);
final profilesPath = await appPath.getProfilesPath();
for (final file in profiles) {
await client.read2File(
"$remoteProfiles/${file.name}",
join(
profilesPath,
file.name,
),
);
}
final configRaw = utf8.decode((await client.read(remoteConfig)));
final clashConfigRaw = utf8.decode(await client.read(remoteClashConfig));
final config = Config.fromJson(json.decode(configRaw));
final clashConfig = ClashConfig.fromJson(json.decode(clashConfigRaw));
if(recoveryOption == RecoveryOption.onlyProfiles){
globalState.appController.config.update(config, RecoveryOption.onlyProfiles);
}else{
globalState.appController.config.update(config, RecoveryOption.all);
globalState.appController.clashConfig.update(clashConfig);
}
await globalState.appController.applyProfile();
globalState.appController.savePreferences();
return true;
}
}

View File

@@ -10,7 +10,7 @@ class AutoLaunch {
AutoLaunch._internal() { AutoLaunch._internal() {
launchAtStartup.setup( launchAtStartup.setup(
appName: appName, appName: appConstant.name,
appPath: Platform.resolvedExecutable, appPath: Platform.resolvedExecutable,
); );
} }

View File

@@ -147,37 +147,6 @@ class Other {
} }
}); });
} }
String? getFileNameForDisposition(String? disposition) {
if (disposition == null) return null;
final parseValue = HeaderValue.parse(disposition);
final parameters = parseValue.parameters;
final key = parameters.keys
.firstWhere((key) => key.startsWith("filename"), orElse: () => '');
if (key.isEmpty) return null;
if (key == "filename*") {
return Uri.decodeComponent((parameters[key] ?? "").split("'").last);
} else {
return parameters[key];
}
}
double getViewWidth() {
final view = WidgetsBinding.instance.platformDispatcher.views.first;
final size = view.physicalSize / view.devicePixelRatio;
return size.width;
}
List<String> parseReleaseBody(String? body) {
if(body == null) return [];
const pattern = r'- (.+?)\. \[.+?\]';
final regex = RegExp(pattern);
return regex
.allMatches(body)
.map((match) => match.group(1) ?? '')
.where((item) => item.isNotEmpty)
.toList();
}
} }
final other = Other(); final other = Other();

View File

@@ -26,9 +26,14 @@ class AppPath {
return directory.path; return directory.path;
} }
Future<String> getConfigPath() async {
final directory = await applicationSupportDirectoryCompleter.future;
return join(directory.path, appConstant.configFileName);
}
Future<String> getProfilesPath() async { Future<String> getProfilesPath() async {
final directory = await applicationSupportDirectoryCompleter.future; final directory = await applicationSupportDirectoryCompleter.future;
return join(directory.path, profilesDirectoryName); return join(directory.path, appConstant.profilesDirectoryName);
} }
Future<String?> getProfilePath(String? id) async { Future<String?> getProfilePath(String? id) async {
@@ -39,7 +44,7 @@ class AppPath {
Future<String> getMMDBPath() async { Future<String> getMMDBPath() async {
var directory = await applicationSupportDirectoryCompleter.future; var directory = await applicationSupportDirectoryCompleter.future;
return join(directory.path, mmdbFileName); return join(directory.path, appConstant.mmdbFileName);
} }
} }

View File

@@ -23,9 +23,9 @@ class Picker {
} }
final file = filePickerResult?.files.first; final file = filePickerResult?.files.first;
if (file == null) { if (file == null) {
return Result.error(appLocalizations.pleaseUploadFile); return Result.error(message: appLocalizations.pleaseUploadFile);
} }
return Result.success(file); return Result.success(data: file);
} }
Future<Result<String>> pickerConfigQRCode() async { Future<Result<String>> pickerConfigQRCode() async {
@@ -34,9 +34,9 @@ class Picker {
if (bytes == null) return Result.error(); if (bytes == null) return Result.error();
final result = await other.parseQRCode(bytes); final result = await other.parseQRCode(bytes);
if (result == null || !result.isUrl) { if (result == null || !result.isUrl) {
return Result.error(appLocalizations.pleaseUploadValidQrcode); return Result.error(message: appLocalizations.pleaseUploadValidQrcode);
} }
return Result.success(result); return Result.success(data: result);
} }
} }

View File

@@ -22,7 +22,7 @@ class Preferences {
Future<ClashConfig?> getClashConfig() async { Future<ClashConfig?> getClashConfig() async {
final preferences = await sharedPreferencesCompleter.future; final preferences = await sharedPreferencesCompleter.future;
final clashConfigString = preferences.getString(clashConfigKey); final clashConfigString = preferences.getString(appConstant.clashKey);
if (clashConfigString == null) return null; if (clashConfigString == null) return null;
final clashConfigMap = json.decode(clashConfigString); final clashConfigMap = json.decode(clashConfigString);
try { try {
@@ -35,14 +35,14 @@ class Preferences {
Future<bool> saveClashConfig(ClashConfig clashConfig) async { Future<bool> saveClashConfig(ClashConfig clashConfig) async {
final preferences = await sharedPreferencesCompleter.future; final preferences = await sharedPreferencesCompleter.future;
return preferences.setString( return preferences.setString(
clashConfigKey, appConstant.clashKey,
json.encode(clashConfig), json.encode(clashConfig),
); );
} }
Future<Config?> getConfig() async { Future<Config?> getConfig() async {
final preferences = await sharedPreferencesCompleter.future; final preferences = await sharedPreferencesCompleter.future;
final configString = preferences.getString(configKey); final configString = preferences.getString(appConstant.configKey);
if (configString == null) return null; if (configString == null) return null;
final configMap = json.decode(configString); final configMap = json.decode(configString);
try { try {
@@ -55,7 +55,7 @@ class Preferences {
Future<bool> saveConfig(Config config) async { Future<bool> saveConfig(Config config) async {
final preferences = await sharedPreferencesCompleter.future; final preferences = await sharedPreferencesCompleter.future;
return preferences.setString( return preferences.setString(
configKey, appConstant.configKey,
json.encode(config), json.encode(config),
); );
} }

View File

@@ -6,31 +6,31 @@ import '../models/models.dart';
class Request { class Request {
static Future<Result<Response>> getFileResponseForUrl(String url) async { static Future<Result<Response>> getFileResponseForUrl(String url) async {
final headers = {'User-Agent': coreName}; final headers = {'User-Agent': appConstant.name};
try { try {
final response = await get(Uri.parse(url), headers: headers).timeout( final response = await get(Uri.parse(url), headers: headers).timeout(
httpTimeoutDuration, appConstant.httpTimeoutDuration,
); );
return Result.success(response); return Result.success(data: response);
} catch (err) { } catch (err) {
return Result.error(err.toString()); return Result.error(message: err.toString());
} }
} }
static Future<Result<Map<String,dynamic>>> checkForUpdate() async { static Future<Result<String>> checkForUpdate() async {
final response = await get( final response = await get(
Uri.parse( Uri.parse(
"https://api.github.com/repos/$repository/releases/latest", "https://api.github.com/repos/${appConstant.repository}/releases/latest",
), ),
); );
if (response.statusCode != 200) return Result.error(); if (response.statusCode != 200) return Result.error();
final body = json.decode(response.body) as Map<String,dynamic>; final body = json.decode(response.body);
final remoteVersion = body['tag_name']; final remoteVersion = body['tag_name'];
final packageInfo = await appPackage.packageInfoCompleter.future; final packageInfo = await appPackage.packageInfoCompleter.future;
final version = packageInfo.version; final version = packageInfo.version;
final hasUpdate = final hasUpdate =
other.compareVersions(remoteVersion.replaceAll('v', ''), version) > 0; other.compareVersions(remoteVersion.replaceAll('v', ''), version) > 0;
if (!hasUpdate) return Result.error(); if (!hasUpdate) return Result.error();
return Result.success(body); return Result.success(data: body['body']);
} }
} }

View File

@@ -3,7 +3,6 @@ import 'dart:async';
import 'package:fl_clash/state.dart'; import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import 'package:url_launcher/url_launcher.dart';
import 'clash/core.dart'; import 'clash/core.dart';
import 'enum/enum.dart'; import 'enum/enum.dart';
@@ -117,7 +116,7 @@ class AppController {
); );
} }
Future applyProfile() async { applyProfile() async {
await globalState.applyProfile( await globalState.applyProfile(
appState: appState, appState: appState,
config: config, config: config,
@@ -209,55 +208,6 @@ class AppController {
} }
} }
autoCheckUpdate() async {
if (!config.autoCheckUpdate) return;
final res = await Request.checkForUpdate();
checkUpdateResultHandle(result: res);
}
checkUpdateResultHandle({
Result<Map<String, dynamic>>? result,
bool handleError = false
}) async {
if (result == null) return;
if (result.type == ResultType.success) {
final tagName = result.data?['tag_name'];
final body = result.data?['body'];
final submits = other.parseReleaseBody(body);
globalState.showMessage(
title: appLocalizations.discoverNewVersion,
message: TextSpan(
text: "$tagName \n",
style: context.textTheme.headlineSmall,
children: [
TextSpan(
text: "\n",
style: context.textTheme.bodyMedium,
),
for (final submit in submits)
TextSpan(
text: "- $submit \n",
style: context.textTheme.bodyMedium,
),
],
),
onTab: () {
launchUrl(
Uri.parse("https://github.com/$repository/releases/latest"),
);
},
confirmText: appLocalizations.goDownload,
);
} else if(handleError){
globalState.showMessage(
title: appLocalizations.checkUpdate,
message: TextSpan(
text: appLocalizations.checkUpdateError,
),
);
}
}
afterInit() async { afterInit() async {
if (config.autoRun) { if (config.autoRun) {
await updateSystemProxy(true); await updateSystemProxy(true);
@@ -270,11 +220,10 @@ class AppController {
if (!config.silentLaunch) { if (!config.silentLaunch) {
window?.show(); window?.show();
} }
autoCheckUpdate();
} }
healthcheck() { healthcheck() {
if (globalState.healthcheckLock) return; if(globalState.healthcheckLock) return;
for (final delay in appState.delayMap.entries) { for (final delay in appState.delayMap.entries) {
setDelay( setDelay(
Delay( Delay(
@@ -295,7 +244,8 @@ class AppController {
} }
toPage(int index, {bool hasAnimate = false}) { toPage(int index, {bool hasAnimate = false}) {
appState.currentLabel = appState.currentNavigationItems[index].label; final nextLabel = globalState.currentNavigationItems[index].label;
appState.currentLabel = nextLabel;
if ((config.isAnimateToPage || hasAnimate)) { if ((config.isAnimateToPage || hasAnimate)) {
globalState.pageController?.animateToPage( globalState.pageController?.animateToPage(
index, index,
@@ -307,8 +257,12 @@ class AppController {
} }
} }
updatePackages() async {
await globalState.updatePackages(appState);
}
toProfiles() { toProfiles() {
final index = appState.currentNavigationItems.indexWhere( final index = globalState.currentNavigationItems.indexWhere(
(element) => element.label == "profiles", (element) => element.label == "profiles",
); );
if (index != -1) { if (index != -1) {
@@ -403,7 +357,7 @@ class AppController {
addProfileFormQrCode() async { addProfileFormQrCode() async {
final result = await picker.pickerConfigQRCode(); final result = await picker.pickerConfigQRCode();
if (result.type == ResultType.error) { if (result.type == ResultType.error) {
if (result.message != null) { if(result.message != null){
globalState.showMessage( globalState.showMessage(
title: appLocalizations.tip, title: appLocalizations.tip,
message: TextSpan( message: TextSpan(
@@ -431,13 +385,4 @@ class AppController {
globalState.updateCurrentDelay(showProxyDelay); globalState.updateCurrentDelay(showProxyDelay);
} }
} }
updateViewWidth() {
appState.viewWidth = context.width;
if (appState.viewWidth == 0) {
Future.delayed(moreDuration, () {
updateViewWidth();
});
}
}
} }

View File

@@ -34,8 +34,6 @@ extension UsedProxyExtension on UsedProxy {
enum Mode { rule, global, direct } enum Mode { rule, global, direct }
enum ViewMode { mobile, laptop, desktop }
enum LogLevel { debug, info, warning, error, silent } enum LogLevel { debug, info, warning, error, silent }
enum TransportProtocol { udp, tcp } enum TransportProtocol { udp, tcp }
@@ -57,8 +55,3 @@ enum ProfileType { file, url }
enum ResultType { success, error } enum ResultType { success, error }
enum MessageType { log, tun, delay, process, now } enum MessageType { log, tun, delay, process, now }
enum RecoveryOption {
all,
onlyProfiles,
}

View File

@@ -1,6 +1,4 @@
import 'package:fl_clash/common/common.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/common.dart';
import 'package:fl_clash/state.dart'; import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:package_info_plus/package_info_plus.dart'; import 'package:package_info_plus/package_info_plus.dart';
@@ -9,20 +7,6 @@ import 'package:url_launcher/url_launcher.dart';
class AboutFragment extends StatelessWidget { class AboutFragment extends StatelessWidget {
const AboutFragment({super.key}); const AboutFragment({super.key});
_checkUpdate(BuildContext context) async {
final commonScaffoldState = context.commonScaffoldState;
if (commonScaffoldState?.mounted != true) return;
final res =
await commonScaffoldState?.loadingRun<Result<Map<String, dynamic>>>(
Request.checkForUpdate,
title: appLocalizations.checkUpdate,
);
globalState.appController.checkUpdateResultHandle(
result: res,
handleError: true,
);
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ListView( return ListView(
@@ -48,7 +32,7 @@ class AboutFragment extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
appName, appConstant.name,
style: Theme.of(context).textTheme.headlineSmall, style: Theme.of(context).textTheme.headlineSmall,
), ),
FutureBuilder<PackageInfo>( FutureBuilder<PackageInfo>(
@@ -82,7 +66,18 @@ class AboutFragment extends StatelessWidget {
ListTile( ListTile(
title: Text(appLocalizations.checkUpdate), title: Text(appLocalizations.checkUpdate),
onTap: () { onTap: () {
_checkUpdate(context); final commonScaffoldState = context.commonScaffoldState;
if (commonScaffoldState?.mounted != true) return;
commonScaffoldState?.loadingRun(() async {
await globalState.checkUpdate(
() {
launchUrl(
Uri.parse(
"https://github.com/${appConstant.repository}/releases/latest"),
);
},
);
});
}, },
), ),
ListTile( ListTile(
@@ -98,7 +93,7 @@ class AboutFragment extends StatelessWidget {
title: Text(appLocalizations.project), title: Text(appLocalizations.project),
onTap: () { onTap: () {
launchUrl( launchUrl(
Uri.parse("https://github.com/$repository"), Uri.parse("https://github.com/${appConstant.repository}"),
); );
}, },
trailing: const Icon(Icons.launch), trailing: const Icon(Icons.launch),

View File

@@ -2,26 +2,62 @@ import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/models.dart'; import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/plugins/app.dart'; import 'package:fl_clash/plugins/app.dart';
import 'package:fl_clash/common/common.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/widgets.dart'; import 'package:fl_clash/widgets/widgets.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
class AccessFragment extends StatefulWidget { class AccessFragment extends StatelessWidget {
const AccessFragment({super.key}); const AccessFragment({super.key});
@override Widget _buildPackageItem({
State<AccessFragment> createState() => _AccessFragmentState(); required Package package,
} required bool value,
required bool isActive,
class _AccessFragmentState extends State<AccessFragment> { required void Function(bool?) onChanged,
final packagesListenable = ValueNotifier<List<Package>>([]); }) {
return AbsorbPointer(
@override absorbing: !isActive,
void initState() { child: ListItem.checkbox(
super.initState(); leading: SizedBox(
WidgetsBinding.instance.addPostFrameCallback((_) async { width: 48,
packagesListenable.value = await app?.getPackages() ?? []; height: 48,
}); child: FutureBuilder<ImageProvider?>(
future: app?.getPackageIcon(package.packageName),
builder: (_, snapshot) {
if (!snapshot.hasData && snapshot.data == null) {
return Container();
} else {
return Image(
image: snapshot.data!,
gaplessPlayback: true,
width: 48,
height: 48,
);
}
},
),
),
title: Text(
package.label,
style: const TextStyle(
overflow: TextOverflow.ellipsis,
),
maxLines: 1,
),
subtitle: Text(
package.packageName,
style: const TextStyle(
overflow: TextOverflow.ellipsis,
),
maxLines: 1,
),
delegate: CheckboxDelegate(
value: value,
onChanged: onChanged,
),
),
);
} }
Widget _buildAppProxyModePopup() { Widget _buildAppProxyModePopup() {
@@ -108,172 +144,160 @@ class _AccessFragmentState extends State<AccessFragment> {
); );
} }
Widget _actionHeader({
required bool isAccessControl,
required List<String> valueList,
required String describe,
required List<String> packageNameList,
}) {
return AbsorbPointer(
absorbing: !isAccessControl,
child: Padding(
padding: const EdgeInsets.only(
top: 4,
bottom: 4,
left: 16,
right: 8,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.max,
children: [
Expanded(
child: IntrinsicHeight(
child: Column(
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
child: Row(
children: [
Flexible(
child: Text(
appLocalizations.selected,
style: Theme.of(context)
.textTheme
.labelLarge
?.copyWith(
color:
Theme.of(context).colorScheme.primary,
),
),
),
const Flexible(
child: SizedBox(
width: 8,
),
),
Flexible(
child: Text(
"${valueList.length}",
style: Theme.of(context)
.textTheme
.labelLarge
?.copyWith(
color:
Theme.of(context).colorScheme.primary,
),
),
),
],
),
),
Flexible(
child: Text(describe),
)
],
),
),
),
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Flexible(
child: _buildSelectedAllButton(
isSelectedAll: valueList.length == packageNameList.length,
allValueList: packageNameList,
),
),
Flexible(child: _buildFilterSystemAppButton()),
Flexible(child: _buildAppProxyModePopup()),
],
),
],
),
),
);
}
Widget _buildPackageList(bool isAccessControl) { Widget _buildPackageList(bool isAccessControl) {
return ValueListenableBuilder( return Selector2<AppState, Config, PackageListSelectorState>(
valueListenable: packagesListenable, selector: (_, appState, config) => PackageListSelectorState(
builder: (_, packages, ___) { accessControl: config.accessControl,
return Selector<Config, AccessControl>( packages: appState.packages,
selector: (_, config) => config.accessControl, ),
builder: (context, accessControl, __) { builder: (context, state, __) {
final isFilterSystemApp = accessControl.isFilterSystemApp; final accessControl = state.accessControl;
final currentPackages = isFilterSystemApp final isFilterSystemApp = accessControl.isFilterSystemApp;
? packages final packages = isFilterSystemApp
.where((element) => element.isSystem == false) ? state.packages
.toList() .where((element) => element.isSystem == false)
: packages; .toList()
final packageNameList = : state.packages;
currentPackages.map((e) => e.packageName).toList(); final packageNameList = packages.map((e) => e.packageName).toList();
final accessControlMode = accessControl.mode; final accessControlMode = accessControl.mode;
final valueList = final valueList =
accessControl.currentList.intersection(packageNameList); accessControl.currentList.intersection(packageNameList);
final describe = final describe = accessControlMode == AccessControlMode.acceptSelected
accessControlMode == AccessControlMode.acceptSelected ? appLocalizations.accessControlAllowDesc
? appLocalizations.accessControlAllowDesc : appLocalizations.accessControlNotAllowDesc;
: appLocalizations.accessControlNotAllowDesc;
return DisabledMask( final listView = ListView.builder(
status: !isAccessControl, itemCount: packages.length,
child: Column( itemBuilder: (_, index) {
children: [ final package = packages[index];
_actionHeader( return _buildPackageItem(
isAccessControl: isAccessControl, package: package,
valueList: valueList, value: valueList.contains(package.packageName),
describe: describe, isActive: isAccessControl,
packageNameList: packageNameList, onChanged: (value) {
), if (value == true) {
Expanded( valueList.add(package.packageName);
flex: 1, } else {
child: FadeBox( valueList.remove(package.packageName);
key: const Key("fade_box"), }
child: currentPackages.isEmpty final config = context.read<Config>();
? const Center( config.accessControl.currentList = valueList;
child: CircularProgressIndicator(), config.accessControl = config.accessControl.copyWith();
) },
: ListView.builder(
itemCount: currentPackages.length,
itemBuilder: (_, index) {
final package = currentPackages[index];
return PackageListItem(
key: Key(package.label),
package: package,
value:
valueList.contains(package.packageName),
isActive: isAccessControl,
onChanged: (value) {
if (value == true) {
valueList.add(package.packageName);
} else {
valueList.remove(package.packageName);
}
final config = context.read<Config>();
config.accessControl.currentList =
valueList;
config.accessControl =
config.accessControl.copyWith();
},
);
},
),
),
),
],
),
); );
}, },
); );
return DisabledMask(
status: !isAccessControl,
child: Column(
children: [
AbsorbPointer(
absorbing: !isAccessControl,
child: Padding(
padding: const EdgeInsets.only(
top: 4,
bottom: 4,
left: 16,
right: 8,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.max,
children: [
Expanded(
child: IntrinsicHeight(
child: Column(
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
child: Row(
children: [
Flexible(
child: Text(
appLocalizations.selected,
style: Theme.of(context)
.textTheme
.labelLarge
?.copyWith(
color: Theme.of(context)
.colorScheme
.primary,
),
),
),
const Flexible(
child: SizedBox(
width: 8,
),
),
Flexible(
child: Text(
"${valueList.length}",
style: Theme.of(context)
.textTheme
.labelLarge
?.copyWith(
color: Theme.of(context)
.colorScheme
.primary,
),
),
),
],
),
),
Flexible(
child: Text(describe),
)
],
),
),
),
Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Flexible(
child: _buildSelectedAllButton(
isSelectedAll:
valueList.length == packageNameList.length,
allValueList: packageNameList,
),
),
Flexible(child: _buildFilterSystemAppButton()),
Flexible(child: _buildAppProxyModePopup()),
],
),
],
),
),
),
Flexible(
flex: 1,
child: FadeBox(
child: packages.isEmpty
? const Center(
child: CircularProgressIndicator(),
)
: listView,
),
),
],
),
);
}, },
); );
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (globalState.appController.appState.packages.isEmpty) {
WidgetsBinding.instance.addPostFrameCallback((_) {
globalState.appController.updatePackages();
});
}
return Selector<Config, bool>( return Selector<Config, bool>(
selector: (_, config) => config.isAccessControl, selector: (_, config) => config.isAccessControl,
builder: (_, isAccessControl, __) { builder: (_, isAccessControl, __) {
@@ -308,64 +332,3 @@ class _AccessFragmentState extends State<AccessFragment> {
); );
} }
} }
class PackageListItem extends StatelessWidget {
final Package package;
final bool value;
final bool isActive;
final void Function(bool?) onChanged;
const PackageListItem({
super.key,
required this.package,
required this.value,
required this.isActive,
required this.onChanged,
});
@override
Widget build(BuildContext context) {
return AbsorbPointer(
absorbing: !isActive,
child: ListItem.checkbox(
leading: SizedBox(
width: 48,
height: 48,
child: FutureBuilder<ImageProvider?>(
future: app?.getPackageIcon(package.packageName),
builder: (_, snapshot) {
if (!snapshot.hasData && snapshot.data == null) {
return Container();
} else {
return Image(
image: snapshot.data!,
gaplessPlayback: true,
width: 48,
height: 48,
);
}
},
),
),
title: Text(
package.label,
style: const TextStyle(
overflow: TextOverflow.ellipsis,
),
maxLines: 1,
),
subtitle: Text(
package.packageName,
style: const TextStyle(
overflow: TextOverflow.ellipsis,
),
maxLines: 1,
),
delegate: CheckboxDelegate(
value: value,
onChanged: onChanged,
),
),
);
}
}

View File

@@ -36,6 +36,26 @@ class ApplicationSettingFragment extends StatelessWidget {
); );
}, },
), ),
Selector<Config, bool>(
selector: (_, config) => config.isCompatible,
builder: (_, isCompatible, __) {
return ListItem.switchItem(
leading: const Icon(Icons.expand),
title: Text(appLocalizations.compatible),
subtitle: Text(appLocalizations.compatibleDesc),
delegate: SwitchDelegate(
value: isCompatible,
onChanged: (bool value) async {
final appController = globalState.appController;
appController.config.isCompatible = value;
await appController.updateClashConfig(isPatch: false);
await appController.updateGroups();
appController.changeProxy();
},
),
);
},
),
if (system.isDesktop) if (system.isDesktop)
Selector<Config, bool>( Selector<Config, bool>(
selector: (_, config) => config.autoLaunch, selector: (_, config) => config.autoLaunch,
@@ -89,24 +109,6 @@ class ApplicationSettingFragment extends StatelessWidget {
); );
}, },
), ),
if (Platform.isAndroid)
Selector<Config, bool>(
selector: (_, config) => config.isAnimateToPage,
builder: (_, isAnimateToPage, child) {
return ListItem.switchItem(
leading: const Icon(Icons.animation),
title: Text(appLocalizations.tabAnimation),
subtitle: Text(appLocalizations.tabAnimationDesc),
delegate: SwitchDelegate(
value: isAnimateToPage,
onChanged: (value) {
final config = context.read<Config>();
config.isAnimateToPage = value;
},
),
);
},
),
Selector<Config, bool>( Selector<Config, bool>(
selector: (_, config) => config.openLogs, selector: (_, config) => config.openLogs,
builder: (_, openLogs, child) { builder: (_, openLogs, child) {
@@ -125,23 +127,24 @@ class ApplicationSettingFragment extends StatelessWidget {
); );
}, },
), ),
Selector<Config, bool>( if (Platform.isAndroid)
selector: (_, config) => config.autoCheckUpdate, Selector<Config, bool>(
builder: (_, autoCheckUpdate, child) { selector: (_, config) => config.isAnimateToPage,
return ListItem.switchItem( builder: (_, isAnimateToPage, child) {
leading: const Icon(Icons.system_update), return ListItem.switchItem(
title: Text(appLocalizations.autoCheckUpdate), leading: const Icon(Icons.animation),
subtitle: Text(appLocalizations.autoCheckUpdateDesc), title: Text(appLocalizations.tabAnimation),
delegate: SwitchDelegate( subtitle: Text(appLocalizations.tabAnimationDesc),
value: autoCheckUpdate, delegate: SwitchDelegate(
onChanged: (bool value) { value: isAnimateToPage,
final config = context.read<Config>(); onChanged: (value) {
config.autoCheckUpdate = value; final config = context.read<Config>();
}, config.isAnimateToPage = value;
), },
); ),
}, );
), },
),
]; ];
return ListView.separated( return ListView.separated(
itemBuilder: (_, index) { itemBuilder: (_, index) {

View File

@@ -1,362 +0,0 @@
import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/common/dav_client.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/config.dart';
import 'package:fl_clash/models/dav.dart';
import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/fade_box.dart';
import 'package:fl_clash/widgets/list.dart';
import 'package:fl_clash/widgets/section.dart';
import 'package:fl_clash/widgets/text.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class BackupAndRecovery extends StatefulWidget {
const BackupAndRecovery({super.key});
@override
State<BackupAndRecovery> createState() => _BackupAndRecoveryState();
}
class _BackupAndRecoveryState extends State<BackupAndRecovery> {
DAVClient? _client;
_showAddWebDAV(DAV? dav) async {
await globalState.showCommonDialog<String>(
child: WebDAVFormDialog(
dav: dav?.copyWith(),
),
);
}
_backup() async {
final commonScaffoldState = context.commonScaffoldState;
final res = await commonScaffoldState?.loadingRun<bool>(() async {
return await _client?.backup();
});
if(res != true) return;
globalState.showMessage(
title: appLocalizations.recovery,
message: TextSpan(text: appLocalizations.backupSuccess),
);
}
_recovery(RecoveryOption recoveryOption) async {
final commonScaffoldState = context.commonScaffoldState;
final res = await commonScaffoldState?.loadingRun<bool>(() async {
return await _client?.recovery(recoveryOption: recoveryOption);
});
if(res != true) return;
globalState.showMessage(
title: appLocalizations.recovery,
message: TextSpan(text: appLocalizations.recoverySuccess),
);
}
_handleRecovery() async {
final recoveryOption = await globalState.showCommonDialog<RecoveryOption>(
child: const RecoveryOptionsDialog(),
);
if (recoveryOption == null) return;
_recovery(recoveryOption);
}
@override
Widget build(BuildContext context) {
return Selector<Config, DAV?>(
selector: (_, config) => config.dav,
builder: (_, dav, __) {
if (dav == null) {
return ListView(
children: [
Section(
title: appLocalizations.account,
child: Builder(
builder: (_) {
return ListItem(
leading: const Icon(Icons.account_box),
title: Text(appLocalizations.noInfo),
subtitle: Text(appLocalizations.pleaseBindWebDAV),
trailing: FilledButton.tonal(
onPressed: () {
_showAddWebDAV(dav);
},
child: Text(
appLocalizations.bind,
),
),
);
},
),
)
],
);
}
_client = DAVClient(dav);
final pingFuture = _client!.pingCompleter.future;
return ListView(
children: [
Section(
title: appLocalizations.account,
child: ListItem(
leading: const Icon(Icons.account_box),
title: TooltipText(
text: Text(
dav.user,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
subtitle: Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(appLocalizations.connectivity),
FutureBuilder<bool>(
future: pingFuture,
builder: (_, snapshot) {
return Center(
child: FadeBox(
key: const Key("fade_box_1"),
child: snapshot.connectionState ==
ConnectionState.waiting
? const SizedBox(
width: 12,
height: 12,
child: CircularProgressIndicator(
strokeWidth: 1,
),
)
: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: snapshot.data == true
? Colors.green
: Colors.red,
),
width: 12,
height: 12,
),
),
);
},
),
],
),
),
trailing: FilledButton.tonal(
onPressed: () {
_showAddWebDAV(dav);
},
child: Text(
appLocalizations.edit,
),
),
),
),
FutureBuilder<bool>(
future: pingFuture,
builder: (_, snapshot) {
return FadeBox(
key: const Key("fade_box_2"),
child: snapshot.data == true
? Section(
title: appLocalizations.backupAndRecovery,
child: Column(
children: [
ListItem(
onTab: _backup,
title: Text(appLocalizations.backup),
subtitle: Text(appLocalizations.backupDesc),
),
ListItem(
onTab: _handleRecovery,
title: Text(appLocalizations.recovery),
subtitle: Text(appLocalizations.recoveryDesc),
),
],
),
)
: Container(),
);
},
),
],
);
},
);
}
}
class WebDAVFormDialog extends StatefulWidget {
final DAV? dav;
const WebDAVFormDialog({super.key, this.dav});
@override
State<WebDAVFormDialog> createState() => _WebDAVFormDialogState();
}
class _WebDAVFormDialogState extends State<WebDAVFormDialog> {
late TextEditingController uriController;
late TextEditingController userController;
late TextEditingController passwordController;
final _obscureController = ValueNotifier<bool>(true);
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
@override
void initState() {
super.initState();
uriController = TextEditingController(text: widget.dav?.uri);
userController = TextEditingController(text: widget.dav?.user);
passwordController = TextEditingController(text: widget.dav?.password);
}
_submit() {
if (!_formKey.currentState!.validate()) return;
globalState.appController.config.dav = DAV(
uri: uriController.text,
user: userController.text,
password: passwordController.text,
);
Navigator.pop(context);
}
_delete() {
globalState.appController.config.dav = null;
Navigator.pop(context);
}
@override
Widget build(BuildContext context) {
return AlertDialog(
title: Text(appLocalizations.webDAVConfiguration),
content: Form(
key: _formKey,
child: SizedBox(
width: dialogCommonWidth,
child: Wrap(
runSpacing: 16,
children: [
TextFormField(
controller: uriController,
maxLines: 2,
minLines: 1,
decoration: InputDecoration(
prefixIcon: const Icon(Icons.link),
border: const OutlineInputBorder(),
labelText: appLocalizations.address,
helperText: appLocalizations.addressHelp,
),
validator: (String? value) {
if (value == null || value.isEmpty || !value.isUrl) {
return appLocalizations.addressTip;
}
return null;
},
),
TextFormField(
controller: userController,
decoration: InputDecoration(
prefixIcon: const Icon(Icons.account_circle),
border: const OutlineInputBorder(),
labelText: appLocalizations.account,
),
validator: (String? value) {
if (value == null || value.isEmpty) {
return appLocalizations.accountTip;
}
return null;
},
),
ValueListenableBuilder(
valueListenable: _obscureController,
builder: (_, obscure, __) {
return TextFormField(
controller: passwordController,
obscureText: obscure,
decoration: InputDecoration(
prefixIcon: const Icon(Icons.password),
border: const OutlineInputBorder(),
suffixIcon: IconButton(
icon: Icon(
obscure ? Icons.visibility : Icons.visibility_off,
),
onPressed: () {
_obscureController.value = !obscure;
},
),
labelText: appLocalizations.password,
),
validator: (String? value) {
if (value == null || value.isEmpty) {
return appLocalizations.passwordTip;
}
return null;
},
);
},
),
],
),
),
),
actions: [
if (widget.dav != null)
TextButton(
onPressed: _delete,
child: Text(appLocalizations.delete),
),
TextButton(
onPressed: _submit,
child: Text(appLocalizations.save),
)
],
);
}
}
class RecoveryOptionsDialog extends StatefulWidget {
const RecoveryOptionsDialog({super.key});
@override
State<RecoveryOptionsDialog> createState() => _RecoveryOptionsDialogState();
}
class _RecoveryOptionsDialogState extends State<RecoveryOptionsDialog> {
_handleOnTab(RecoveryOption? value) {
if (value == null) return;
Navigator.of(context).pop(value);
}
@override
Widget build(BuildContext context) {
return AlertDialog(
title: Text(appLocalizations.recovery),
contentPadding: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 16,
),
content: SizedBox(
width: 250,
child: Wrap(
children: [
ListItem(
onTab: () {
_handleOnTab(RecoveryOption.onlyProfiles);
},
title: Text(appLocalizations.recoveryProfiles),
),
ListItem(
onTab: () {
_handleOnTab(RecoveryOption.all);
},
title: Text(appLocalizations.recoveryAll),
)
],
),
),
);
}
}

View File

@@ -47,27 +47,6 @@ class _ConfigFragmentState extends State<ConfigFragment> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
List<Widget> items = [ List<Widget> items = [
Selector<ClashConfig, int>(
selector: (_, clashConfig) => clashConfig.mixedPort,
builder: (_, mixedPort, __) {
return ListItem(
onTab: () {
_modifyMixedPort(mixedPort);
},
padding: const EdgeInsets.symmetric(horizontal: 16,vertical: 4),
leading: const Icon(Icons.adjust),
title: Text(appLocalizations.proxyPort),
trailing: FilledButton.tonal(
onPressed: () {
_modifyMixedPort(mixedPort);
},
child: Text(
"$mixedPort",
),
),
);
},
),
Selector<ClashConfig, bool>( Selector<ClashConfig, bool>(
selector: (_, clashConfig) => clashConfig.allowLan, selector: (_, clashConfig) => clashConfig.allowLan,
builder: (_, allowLan, __) { builder: (_, allowLan, __) {
@@ -105,64 +84,62 @@ class _ConfigFragmentState extends State<ConfigFragment> {
); );
}, },
), ),
Selector<Config, bool>( Selector<ClashConfig, int>(
selector: (_, config) => config.isCompatible, selector: (_, clashConfig) => clashConfig.mixedPort,
builder: (_, isCompatible, __) { builder: (_, mixedPort, __) {
return ListItem.switchItem( return ListItem(
leading: const Icon(Icons.expand), onTab: () {
title: Text(appLocalizations.compatible), _modifyMixedPort(mixedPort);
subtitle: Text(appLocalizations.compatibleDesc), },
delegate: SwitchDelegate( leading: const Icon(Icons.adjust),
value: isCompatible, title: Text(appLocalizations.proxyPort),
onChanged: (bool value) async { trailing: FilledButton.tonal(
final appController = globalState.appController; onPressed: () {
appController.config.isCompatible = value; _modifyMixedPort(mixedPort);
await appController.updateClashConfig(isPatch: false);
await appController.updateGroups();
appController.changeProxy();
}, },
child: Text(
"$mixedPort",
),
), ),
); );
}, },
), ),
Padding( Selector<ClashConfig, LogLevel>(
padding: kMaterialListPadding, selector: (_, clashConfig) => clashConfig.logLevel,
child: Selector<ClashConfig, LogLevel>( builder: (_, value, __) {
selector: (_, clashConfig) => clashConfig.logLevel, return ListItem(
builder: (_, value, __) { leading: const Icon(Icons.feedback),
return ListItem( title: Text(appLocalizations.logLevel),
leading: const Icon(Icons.feedback), trailing: SizedBox(
title: Text(appLocalizations.logLevel), height: 48,
trailing: SizedBox( child: DropdownMenu<LogLevel>(
height: 48, width: 124,
child: DropdownMenu<LogLevel>( inputDecorationTheme: const InputDecorationTheme(
width: 124, filled: true,
inputDecorationTheme: const InputDecorationTheme( contentPadding: EdgeInsets.symmetric(
filled: true, vertical: 5,
contentPadding: EdgeInsets.symmetric( horizontal: 16,
vertical: 5,
horizontal: 16,
),
), ),
initialSelection: value,
dropdownMenuEntries: [
for (final logLevel in LogLevel.values)
DropdownMenuEntry<LogLevel>(
value: logLevel,
label: logLevel.name,
)
],
onSelected: _updateLoglevel,
), ),
initialSelection: value,
dropdownMenuEntries: [
for (final logLevel in LogLevel.values)
DropdownMenuEntry<LogLevel>(
value: logLevel,
label: logLevel.name,
)
],
onSelected: _updateLoglevel,
), ),
); ),
}, );
), },
), ),
]; ];
return ListView.separated( return ListView.separated(
itemBuilder: (_, index) { itemBuilder: (_, index) {
return Container( return Container(
padding: kMaterialListPadding,
alignment: Alignment.center, alignment: Alignment.center,
child: items[index], child: items[index],
); );

View File

@@ -1,8 +1,6 @@
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/models.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_adaptive_scaffold/flutter_adaptive_scaffold.dart';
import 'package:fl_clash/widgets/widgets.dart'; import 'package:fl_clash/widgets/widgets.dart';
import 'package:provider/provider.dart';
import 'network_detection.dart'; import 'network_detection.dart';
import 'core_info.dart'; import 'core_info.dart';
@@ -19,51 +17,63 @@ class DashboardFragment extends StatefulWidget {
} }
class _DashboardFragmentState extends State<DashboardFragment> { class _DashboardFragmentState extends State<DashboardFragment> {
@override _buildGrid(bool isDesktop) {
Widget build(BuildContext context) { return SingleChildScrollView(
return FloatLayout( padding: const EdgeInsets.all(16),
floatingWidget: const FloatWrapper( child: Grid(
child: StartButton(), crossAxisCount: 12,
), crossAxisSpacing: 16,
child: Align( mainAxisSpacing: 16,
alignment: Alignment.topCenter, children: [
child: SingleChildScrollView( GridItem(
padding: const EdgeInsets.all(16), crossAxisCellCount: isDesktop ? 8 : 12,
child: Selector<AppState, ViewMode>( child: const NetworkSpeed(),
selector: (_, appState) => appState.viewMode,
builder: (_, viewMode, ___) {
final isDesktop = viewMode == ViewMode.desktop;
return Grid(
crossAxisCount: 12,
crossAxisSpacing: 16,
mainAxisSpacing: 16,
children: [
GridItem(
crossAxisCellCount: isDesktop ? 8 : 12,
child: const NetworkSpeed(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const OutboundMode(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const NetworkDetection(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const TrafficUsage(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const CoreInfo(),
),
],
);
},
), ),
), GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const OutboundMode(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const NetworkDetection(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const TrafficUsage(),
),
GridItem(
crossAxisCellCount: isDesktop ? 4 : 6,
child: const CoreInfo(),
),
],
), ),
); );
} }
@override
Widget build(BuildContext context) {
return LayoutBuilder(builder: (_, container) {
if (container.maxWidth < 200) return Container();
return FloatLayout(
floatingWidget: const FloatWrapper(
child: StartButton(),
),
child: Align(
alignment: Alignment.topCenter,
child: SlotLayout(
config: {
Breakpoints.small: SlotLayout.from(
key: const Key('dashboard_small'),
builder: (_) => _buildGrid(false),
),
Breakpoints.mediumAndUp: SlotLayout.from(
key: const Key('dashboard_mediumAndUp'),
builder: (_) => _buildGrid(true),
),
},
),
),
);
});
}
} }

View File

@@ -73,6 +73,28 @@ class _NetworkDetectionState extends State<NetworkDetection> {
); );
} }
_updateCurrentDelay(
String? currentProxyName,
int? delay,
bool isCurrent,
bool isInit,
) {
if (!isCurrent || currentProxyName == null || !isInit) return;
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
if (delay == null) {
globalState.appController.setDelay(
Delay(
name: currentProxyName,
value: 0,
),
);
globalState.updateCurrentDelay(
currentProxyName,
);
}
});
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return CommonCard( return CommonCard(

View File

@@ -7,5 +7,4 @@ export 'connections.dart';
export 'access.dart'; export 'access.dart';
export 'config.dart'; export 'config.dart';
export 'application_setting.dart'; export 'application_setting.dart';
export 'about.dart'; export 'about.dart';
export 'backup_and_recovery.dart';

View File

@@ -1,16 +1,47 @@
import 'package:collection/collection.dart'; import 'dart:async';
import 'package:fl_clash/common/common.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import '../models/models.dart'; import '../models/models.dart';
import '../widgets/widgets.dart'; import '../widgets/widgets.dart';
class LogsFragment extends StatelessWidget { class LogsFragment extends StatefulWidget {
const LogsFragment({super.key}); const LogsFragment({super.key});
_initActions(BuildContext context) { @override
State<LogsFragment> createState() => _LogsFragmentState();
}
class _LogsFragmentState extends State<LogsFragment> {
final logsNotifier = ValueNotifier<List<Log>>([]);
Timer? timer;
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
logsNotifier.value = context.read<AppState>().logs;
if (timer != null) {
timer?.cancel();
timer = null;
}
timer = Timer.periodic(const Duration(seconds: 3), (timer) {
if (mounted) {
logsNotifier.value = context.read<AppState>().logs;
}
});
});
}
@override
void dispose() {
super.dispose();
timer?.cancel();
timer = null;
}
_initActions() {
WidgetsBinding.instance.addPostFrameCallback((timeStamp) { WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
final commonScaffoldState = final commonScaffoldState =
context.findAncestorStateOfType<CommonScaffoldState>(); context.findAncestorStateOfType<CommonScaffoldState>();
@@ -20,7 +51,7 @@ class LogsFragment extends StatelessWidget {
showSearch( showSearch(
context: context, context: context,
delegate: LogsSearchDelegate( delegate: LogsSearchDelegate(
logs: globalState.appController.appState.logs.reversed.toList(), logs: logsNotifier.value.reversed.toList(),
), ),
); );
}, },
@@ -31,10 +62,8 @@ class LogsFragment extends StatelessWidget {
} }
_buildList() { _buildList() {
return Selector<AppState, List<Log>>( return ValueListenableBuilder<List<Log>>(
selector: (_, appState) => appState.logs, valueListenable: logsNotifier,
shouldRebuild: (prev, next) =>
!const ListEquality<Log>().equals(prev, next),
builder: (_, List<Log> logs, __) { builder: (_, List<Log> logs, __) {
if (logs.isEmpty) { if (logs.isEmpty) {
return NullStatus( return NullStatus(
@@ -48,7 +77,6 @@ class LogsFragment extends StatelessWidget {
itemBuilder: (BuildContext context, int index) { itemBuilder: (BuildContext context, int index) {
final log = logs[index]; final log = logs[index];
return LogItem( return LogItem(
key: ValueKey(log.dateTime),
log: log, log: log,
); );
}, },
@@ -65,14 +93,12 @@ class LogsFragment extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Selector<AppState, bool?>( return Selector<AppState, bool?>(
selector: (_, appState) { selector: (_, appState) =>
return appState.currentLabel == 'logs' || appState.currentLabel == 'logs' ||
appState.viewMode == ViewMode.mobile && context.isMobile && appState.currentLabel == "tools",
appState.currentLabel == "tools";
},
builder: (_, isCurrent, child) { builder: (_, isCurrent, child) {
if (isCurrent == null || isCurrent) { if (isCurrent == null || isCurrent) {
_initActions(context); _initActions();
} }
return child!; return child!;
}, },
@@ -88,16 +114,13 @@ class LogsSearchDelegate extends SearchDelegate {
required this.logs, required this.logs,
}); });
List<Log> get _results { List<Log> get _results => logs
final lowQuery = query.toLowerCase(); .where(
return logs (log) =>
.where( (log.payload?.contains(query) ?? false) ||
(log) => log.logLevel.name.contains(query),
(log.payload?.toLowerCase().contains(lowQuery) ?? false) || )
log.logLevel.name.contains(lowQuery), .toList();
)
.toList();
}
@override @override
List<Widget>? buildActions(BuildContext context) { List<Widget>? buildActions(BuildContext context) {
@@ -138,7 +161,6 @@ class LogsSearchDelegate extends SearchDelegate {
itemBuilder: (BuildContext context, int index) { itemBuilder: (BuildContext context, int index) {
final log = _results[index]; final log = _results[index];
return LogItem( return LogItem(
key: ValueKey(log.dateTime),
log: log, log: log,
); );
}, },

View File

@@ -86,7 +86,6 @@ class _EditProfileState extends State<EditProfile> {
ListItem( ListItem(
title: TextFormField( title: TextFormField(
controller: urlController, controller: urlController,
minLines: 1,
maxLines: 2, maxLines: 2,
decoration: InputDecoration( decoration: InputDecoration(
border: const OutlineInputBorder(), border: const OutlineInputBorder(),

View File

@@ -1,10 +1,10 @@
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/fragments/profiles/edit_profile.dart'; import 'package:fl_clash/fragments/profiles/edit_profile.dart';
import 'package:fl_clash/models/models.dart'; import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/common/common.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/state.dart'; import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/widgets.dart'; import 'package:fl_clash/widgets/widgets.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_adaptive_scaffold/flutter_adaptive_scaffold.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import 'add_profile.dart'; import 'add_profile.dart';
@@ -25,157 +25,6 @@ class ProfilesFragment extends StatefulWidget {
} }
class _ProfilesFragmentState extends State<ProfilesFragment> { class _ProfilesFragmentState extends State<ProfilesFragment> {
_handleDeleteProfile(String id) async {
globalState.appController.deleteProfile(id);
}
_handleUpdateProfile(String id) async {
context.findAncestorStateOfType<CommonScaffoldState>()?.loadingRun(
() => globalState.appController.updateProfile(id),
);
}
_handleShowAddExtendPage() {
showExtendPage(
globalState.navigatorKey.currentState!.context,
body: AddProfile(
context: globalState.navigatorKey.currentState!.context,
),
title: "${appLocalizations.add}${appLocalizations.profile}",
);
}
_handleShowEditExtendPage(Profile profile) {
showExtendPage(
context,
body: EditProfile(
profile: profile.copyWith(),
context: context,
),
title: "${appLocalizations.edit}${appLocalizations.profile}",
);
}
_buildGrid({
required ProfilesSelectorState state,
int crossAxisCount = 1,
}) {
return SingleChildScrollView(
padding: crossAxisCount > 1
? const EdgeInsets.symmetric(horizontal: 16)
: EdgeInsets.zero,
child: Grid.baseGap(
crossAxisCount: crossAxisCount,
children: [
for (final profile in state.profiles)
GridItem(
child: ProfileItem(
profile: profile,
commonPopupMenu: CommonPopupMenu<ProfileActions>(
items: [
CommonPopupMenuItem(
action: ProfileActions.edit,
label: appLocalizations.edit,
iconData: Icons.edit,
),
if (profile.url != null)
CommonPopupMenuItem(
action: ProfileActions.update,
label: appLocalizations.update,
iconData: Icons.sync,
),
CommonPopupMenuItem(
action: ProfileActions.delete,
label: appLocalizations.delete,
iconData: Icons.delete,
),
],
onSelected: (ProfileActions? action) async {
switch (action) {
case ProfileActions.edit:
_handleShowEditExtendPage(profile);
break;
case ProfileActions.delete:
_handleDeleteProfile(profile.id);
break;
case ProfileActions.update:
_handleUpdateProfile(profile.id);
break;
case null:
break;
}
},
),
groupValue: state.currentProfileId,
onChanged: globalState.appController.changeProfile,
),
),
],
),
);
}
_getColumns(ViewMode viewMode) {
switch (viewMode) {
case ViewMode.mobile:
return 1;
case ViewMode.laptop:
return 1;
case ViewMode.desktop:
return 2;
}
}
@override
Widget build(BuildContext context) {
return FloatLayout(
floatingWidget: Container(
margin: const EdgeInsets.all(kFloatingActionButtonMargin),
child: FloatingActionButton(
heroTag: null,
onPressed: _handleShowAddExtendPage,
child: const Icon(Icons.add),
),
),
child: Selector2<AppState, Config, ProfilesSelectorState>(
selector: (_, appState, config) => ProfilesSelectorState(
profiles: config.profiles,
currentProfileId: config.currentProfileId,
viewMode: appState.viewMode),
builder: (context, state, child) {
if (state.profiles.isEmpty) {
return NullStatus(
label: appLocalizations.nullProfileDesc,
);
}
return Align(
alignment: Alignment.topCenter,
child: _buildGrid(
state: state,
crossAxisCount: _getColumns(state.viewMode),
),
);
},
),
);
}
}
class ProfileItem extends StatelessWidget {
final Profile profile;
final String? groupValue;
final CommonPopupMenu commonPopupMenu;
final void Function(String? value) onChanged;
const ProfileItem({
super.key,
required this.profile,
required this.commonPopupMenu,
required this.groupValue,
required this.onChanged,
});
String _getLastUpdateTimeDifference(DateTime lastDateTime) { String _getLastUpdateTimeDifference(DateTime lastDateTime) {
final currentDateTime = DateTime.now(); final currentDateTime = DateTime.now();
final difference = currentDateTime.difference(lastDateTime); final difference = currentDateTime.difference(lastDateTime);
@@ -200,8 +49,21 @@ class ProfileItem extends StatelessWidget {
return appLocalizations.just; return appLocalizations.just;
} }
@override _handleDeleteProfile(String id) async {
Widget build(BuildContext context) { globalState.appController.deleteProfile(id);
}
_handleUpdateProfile(String id) async {
context.findAncestorStateOfType<CommonScaffoldState>()?.loadingRun(
() => globalState.appController.updateProfile(id),
);
}
Widget _profileItem({
required Profile profile,
required String? groupValue,
required void Function(String? value) onChanged,
}) {
String useShow; String useShow;
String totalShow; String totalShow;
double progress; double progress;
@@ -225,7 +87,41 @@ class ProfileItem extends StatelessWidget {
onChanged: onChanged, onChanged: onChanged,
), ),
padding: const EdgeInsets.symmetric(horizontal: 16), padding: const EdgeInsets.symmetric(horizontal: 16),
trailing: commonPopupMenu, trailing: CommonPopupMenu<ProfileActions>(
items: [
CommonPopupMenuItem(
action: ProfileActions.edit,
label: appLocalizations.edit,
iconData: Icons.edit,
),
if (profile.url != null)
CommonPopupMenuItem(
action: ProfileActions.update,
label: appLocalizations.update,
iconData: Icons.sync,
),
CommonPopupMenuItem(
action: ProfileActions.delete,
label: appLocalizations.delete,
iconData: Icons.delete,
),
],
onSelected: (ProfileActions? action) async {
switch (action) {
case ProfileActions.edit:
_handleShowEditExtendPage(profile);
break;
case ProfileActions.delete:
_handleDeleteProfile(profile.id);
break;
case ProfileActions.update:
_handleUpdateProfile(profile.id);
break;
case null:
break;
}
},
),
title: Column( title: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@@ -276,4 +172,104 @@ class ProfileItem extends StatelessWidget {
), ),
); );
} }
_handleShowAddExtendPage() {
showExtendPage(
globalState.navigatorKey.currentState!.context,
body: AddProfile(
context: globalState.navigatorKey.currentState!.context,
),
title: "${appLocalizations.add}${appLocalizations.profile}",
);
}
_handleShowEditExtendPage(Profile profile) {
showExtendPage(
context,
body: EditProfile(
profile: profile.copyWith(),
context: context,
),
title: "${appLocalizations.edit}${appLocalizations.profile}",
);
}
_buildGrid({
required ProfilesSelectorState state,
int crossAxisCount = 1,
}) {
return SingleChildScrollView(
padding: crossAxisCount > 1
? const EdgeInsets.symmetric(horizontal: 16)
: EdgeInsets.zero,
child: Grid.baseGap(
crossAxisCount: crossAxisCount,
children: [
for (final profile in state.profiles)
GridItem(
child: _profileItem(
profile: profile,
groupValue: state.currentProfileId,
onChanged: globalState.appController.changeProfileDebounce,
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return FloatLayout(
floatingWidget: Container(
margin: const EdgeInsets.all(kFloatingActionButtonMargin),
child: FloatingActionButton(
heroTag: null,
onPressed: _handleShowAddExtendPage,
child: const Icon(Icons.add),
),
),
child: Selector<Config, ProfilesSelectorState>(
selector: (_, config) => ProfilesSelectorState(
profiles: config.profiles,
currentProfileId: config.currentProfileId,
),
builder: (context, state, child) {
if (state.profiles.isEmpty) {
return NullStatus(
label: appLocalizations.nullProfileDesc,
);
}
return Align(
alignment: Alignment.topCenter,
child: SlotLayout(
config: {
Breakpoints.small: SlotLayout.from(
key: const Key('profiles_grid_small'),
builder: (_) => _buildGrid(
state: state,
crossAxisCount: 1,
),
),
Breakpoints.medium: SlotLayout.from(
key: const Key('profiles_grid_medium'),
builder: (_) => _buildGrid(
state: state,
crossAxisCount: 1,
),
),
Breakpoints.large: SlotLayout.from(
key: const Key('profiles_grid_large'),
builder: (_) => _buildGrid(
state: state,
crossAxisCount: 2,
),
),
},
),
);
},
),
);
}
} }

View File

@@ -1,5 +1,6 @@
import 'package:fl_clash/state.dart'; import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_adaptive_scaffold/flutter_adaptive_scaffold.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import '../enum/enum.dart'; import '../enum/enum.dart';
@@ -97,7 +98,7 @@ class _ProxiesFragmentState extends State<ProxiesFragment>
isScrollable: true, isScrollable: true,
tabAlignment: TabAlignment.start, tabAlignment: TabAlignment.start,
overlayColor: overlayColor:
const WidgetStatePropertyAll(Colors.transparent), const MaterialStatePropertyAll(Colors.transparent),
tabs: [ tabs: [
for (final groupName in state.groupNames) for (final groupName in state.groupNames)
Tab( Tab(
@@ -185,15 +186,168 @@ class ProxiesTabView extends StatelessWidget {
8 * 2; 8 * 2;
} }
int _getColumns(ViewMode viewMode) { _card(
switch (viewMode) { BuildContext context, {
case ViewMode.mobile: required void Function() onPressed,
return 2; required bool isSelected,
case ViewMode.laptop: required Proxy proxy,
return 3; }) {
case ViewMode.desktop: final measure = globalState.appController.measure;
return 4; return CommonCard(
} isSelected: isSelected,
onPressed: onPressed,
selectWidget: Container(
alignment: Alignment.topRight,
margin: const EdgeInsets.all(8),
child: Container(
padding: const EdgeInsets.all(4),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Theme.of(context).colorScheme.secondaryContainer,
),
child: const SelectIcon(),
),
),
child: Padding(
padding: const EdgeInsets.all(12),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: measure.bodyMediumHeight * 2,
child: Text(
proxy.name,
maxLines: 2,
style: context.textTheme.bodyMedium?.copyWith(
overflow: TextOverflow.ellipsis,
),
),
),
const SizedBox(
height: 8,
),
SizedBox(
height: measure.bodySmallHeight,
child: Selector<AppState, String>(
selector: (context, appState) => appState.getDesc(
proxy.type,
proxy.name,
),
builder: (_, desc, __) {
return TooltipText(
text: Text(
desc,
style: context.textTheme.bodySmall?.copyWith(
overflow: TextOverflow.ellipsis,
color: context.textTheme.bodySmall?.color?.toLight(),
),
),
);
},
),
),
const SizedBox(
height: 8,
),
SizedBox(
height: measure.labelSmallHeight,
child: Selector<AppState, int?>(
selector: (context, appState) => appState.getDelay(
proxy.name,
),
builder: (_, delay, __) {
return FadeBox(
child: Builder(
builder: (_) {
if (delay == null) {
return Container();
}
if (delay == 0) {
return SizedBox(
height: measure.labelSmallHeight,
width: measure.labelSmallHeight,
child: const CircularProgressIndicator(
strokeWidth: 2,
),
);
}
return Text(
delay > 0 ? '$delay ms' : "Timeout",
style: context.textTheme.labelSmall?.copyWith(
overflow: TextOverflow.ellipsis,
color: other.getDelayColor(
delay,
),
),
);
},
),
);
},
),
),
],
),
),
);
}
Widget _buildGrid(
BuildContext context, {
required List<Proxy> proxies,
required int columns,
}) {
return GridView.builder(
padding: const EdgeInsets.all(16),
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: columns,
mainAxisSpacing: 8,
crossAxisSpacing: 8,
mainAxisExtent: _getItemHeight(context),
),
itemCount: proxies.length,
itemBuilder: (_, index) {
final proxy = proxies[index];
return Selector3<AppState, Config, ClashConfig,
ProxiesCardSelectorState>(
selector: (_, appState, config, clashConfig) {
final group = appState.getGroupWithName(groupName)!;
bool isSelected =
config.currentSelectedMap[group.name] == proxy.name ||
(config.currentSelectedMap[group.name] == null &&
group.now == proxy.name);
return ProxiesCardSelectorState(
isSelected: isSelected,
);
},
builder: (_, state, __) {
return _card(
context,
isSelected: state.isSelected,
onPressed: () {
final appController = globalState.appController;
final group =
appController.appState.getGroupWithName(groupName)!;
if (group.type != GroupType.Selector) {
globalState.showSnackBar(
context,
message: appLocalizations.notSelectedTip,
);
return;
}
globalState.appController.config.updateCurrentSelectedMap(
groupName,
proxy.name,
);
globalState.appController.changeProxy();
},
proxy: proxy,
);
},
);
},
);
} }
@override @override
@@ -204,7 +358,6 @@ class ProxiesTabView extends StatelessWidget {
proxiesSortType: config.proxiesSortType, proxiesSortType: config.proxiesSortType,
sortNum: appState.sortNum, sortNum: appState.sortNum,
group: appState.getGroupWithName(groupName)!, group: appState.getGroupWithName(groupName)!,
viewMode: appState.viewMode,
); );
}, },
builder: (_, state, __) { builder: (_, state, __) {
@@ -215,166 +368,33 @@ class ProxiesTabView extends StatelessWidget {
); );
return Align( return Align(
alignment: Alignment.topCenter, alignment: Alignment.topCenter,
child: GridView.builder( child: SlotLayout(
padding: const EdgeInsets.all(16), config: {
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( Breakpoints.small: SlotLayout.from(
crossAxisCount: _getColumns(state.viewMode), key: const Key('proxies_grid_small'),
mainAxisSpacing: 8, builder: (_) => _buildGrid(
crossAxisSpacing: 8, context,
mainAxisExtent: _getItemHeight(context), proxies: proxies,
), columns: 2,
itemCount: proxies.length, ),
itemBuilder: (_, index) {
final proxy = proxies[index];
return ProxyCard(
key: ValueKey('$groupName.${proxy.name}'),
proxy: proxy,
groupName: groupName,
);
},
),
);
},
);
}
}
class ProxyCard extends StatelessWidget {
final String groupName;
final Proxy proxy;
const ProxyCard({
super.key,
required this.groupName,
required this.proxy,
});
@override
Widget build(BuildContext context) {
final measure = globalState.appController.measure;
return Selector3<AppState, Config, ClashConfig, ProxiesCardSelectorState>(
selector: (_, appState, config, clashConfig) {
final group = appState.getGroupWithName(groupName)!;
bool isSelected = config.currentSelectedMap[group.name] == proxy.name ||
(config.currentSelectedMap[group.name] == null &&
group.now == proxy.name);
return ProxiesCardSelectorState(
isSelected: isSelected,
);
},
builder: (_, state, __) {
return CommonCard(
isSelected: state.isSelected,
onPressed: () {
final appController = globalState.appController;
final group = appController.appState.getGroupWithName(groupName)!;
if (group.type != GroupType.Selector) {
globalState.showSnackBar(
context,
message: appLocalizations.notSelectedTip,
);
return;
}
globalState.appController.config.updateCurrentSelectedMap(
groupName,
proxy.name,
);
globalState.appController.changeProxy();
},
selectWidget: Container(
alignment: Alignment.topRight,
margin: const EdgeInsets.all(8),
child: Container(
padding: const EdgeInsets.all(4),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Theme.of(context).colorScheme.secondaryContainer,
), ),
child: const SelectIcon(), Breakpoints.medium: SlotLayout.from(
), key: const Key('proxies_grid_medium'),
), builder: (_) => _buildGrid(
child: Padding( context,
padding: const EdgeInsets.all(12), proxies: proxies,
child: Column( columns: 3,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: measure.bodyMediumHeight * 2,
child: Text(
proxy.name,
maxLines: 2,
style: context.textTheme.bodyMedium?.copyWith(
overflow: TextOverflow.ellipsis,
),
),
), ),
const SizedBox( ),
height: 8, Breakpoints.large: SlotLayout.from(
key: const Key('proxies_grid_large'),
builder: (_) => _buildGrid(
context,
proxies: proxies,
columns: 4,
), ),
SizedBox( ),
height: measure.bodySmallHeight, },
child: Selector<AppState, String>(
selector: (context, appState) => appState.getDesc(
proxy.type,
proxy.name,
),
builder: (_, desc, __) {
return TooltipText(
text: Text(
desc,
style: context.textTheme.bodySmall?.copyWith(
overflow: TextOverflow.ellipsis,
color:
context.textTheme.bodySmall?.color?.toLight(),
),
),
);
},
),
),
const SizedBox(
height: 8,
),
SizedBox(
height: measure.labelSmallHeight,
child: Selector<AppState, int?>(
selector: (context, appState) => appState.getDelay(
proxy.name,
),
builder: (_, delay, __) {
return FadeBox(
child: Builder(
builder: (_) {
if (delay == null) {
return Container();
}
if (delay == 0) {
return SizedBox(
height: measure.labelSmallHeight,
width: measure.labelSmallHeight,
child: const CircularProgressIndicator(
strokeWidth: 2,
),
);
}
return Text(
delay > 0 ? '$delay ms' : "Timeout",
style: context.textTheme.labelSmall?.copyWith(
overflow: TextOverflow.ellipsis,
color: other.getDelayColor(
delay,
),
),
);
},
),
);
},
),
),
],
),
), ),
); );
}, },
@@ -401,11 +421,13 @@ class _DelayTestButtonContainerState extends State<DelayTestButtonContainer>
late Animation<double> _scale; late Animation<double> _scale;
late Animation<double> _opacity; late Animation<double> _opacity;
_healthcheck() async { _healthcheck() async
if (globalState.healthcheckLock) return; {
if(globalState.healthcheckLock) return;
_controller.forward(); _controller.forward();
globalState.appController.healthcheck(); globalState.appController.healthcheck();
Future.delayed(httpTimeoutDuration + moreDuration, () { Future.delayed(appConstant.httpTimeoutDuration + appConstant.moreDuration,
() {
_controller.reverse(); _controller.reverse();
}); });
} }

View File

@@ -109,7 +109,7 @@ class ThemeFragment extends StatelessWidget {
]; ];
List<Color?> primaryColors = [ List<Color?> primaryColors = [
null, null,
defaultPrimaryColor, appConstant.defaultPrimaryColor,
Colors.pinkAccent, Colors.pinkAccent,
Colors.greenAccent, Colors.greenAccent,
Colors.yellowAccent, Colors.yellowAccent,

View File

@@ -12,7 +12,6 @@ import 'package:flutter/material.dart';
import 'package:intl/intl.dart'; import 'package:intl/intl.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import '../widgets/widgets.dart'; import '../widgets/widgets.dart';
import 'backup_and_recovery.dart';
import 'theme.dart'; import 'theme.dart';
class ToolsFragment extends StatefulWidget { class ToolsFragment extends StatefulWidget {
@@ -52,6 +51,33 @@ class _ToolboxFragmentState extends State<ToolsFragment> {
); );
} }
Widget _buildSection({
required String title,
required Widget content,
}) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
child: Text(
title,
style: Theme.of(context).textTheme.labelLarge?.copyWith(
color: Theme.of(context).colorScheme.primary,
),
),
),
),
Expanded(
flex: 0,
child: content,
)
],
);
}
String _getLocaleString(Locale? locale) { String _getLocaleString(Locale? locale) {
if (locale == null) return appLocalizations.defaultText; if (locale == null) return appLocalizations.defaultText;
return Intl.message(locale.toString()); return Intl.message(locale.toString());
@@ -135,19 +161,9 @@ class _ToolboxFragmentState extends State<ToolsFragment> {
title: Text(appLocalizations.theme), title: Text(appLocalizations.theme),
subtitle: Text(appLocalizations.themeDesc), subtitle: Text(appLocalizations.themeDesc),
delegate: OpenDelegate( delegate: OpenDelegate(
title: appLocalizations.theme, title: appLocalizations.theme,
widget: const ThemeFragment(), widget: const ThemeFragment(),
extendPageWidth: 360, extendPageWidth: 360),
),
),
ListItem.open(
leading: const Icon(Icons.cloud_sync),
title: Text(appLocalizations.backupAndRecovery),
subtitle: Text(appLocalizations.backupAndRecoveryDesc),
delegate: OpenDelegate(
title: appLocalizations.backupAndRecovery,
widget: const BackupAndRecovery(),
),
), ),
if (Platform.isAndroid) if (Platform.isAndroid)
ListItem.open( ListItem.open(
@@ -194,47 +210,36 @@ class _ToolboxFragmentState extends State<ToolsFragment> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Selector<Config, String?>( final items = [
selector: (_, config) => config.locale, Selector<AppState, List<NavigationItem>>(
builder: (_, __, ___) { selector: (_, appState) => appState.navigationItems,
final items = [ builder: (_, navigationItems, __) {
Selector<AppState, MoreToolsSelectorState>( final moreNavigationItems = navigationItems
selector: (_, appState) { .where(
return MoreToolsSelectorState( (element) => element.modes.contains(NavigationItemMode.more),
navigationItems: appState.viewMode == ViewMode.mobile )
? appState.navigationItems.where( .toList();
(element) { if (moreNavigationItems.isEmpty) {
return element.modes return Container();
.contains(NavigationItemMode.more); }
}, return _buildSection(
).toList() title: appLocalizations.more,
: [], content: _buildNavigationMenu(moreNavigationItems),
); );
}, },
builder: (_, state, __) { ),
if (state.navigationItems.isEmpty) { _buildSection(
return Container(); title: appLocalizations.settings,
} content: _getSettingList(),
return Section( ),
title: appLocalizations.more, _buildSection(
child: _buildNavigationMenu(state.navigationItems), title: appLocalizations.other,
); content: _getOtherList(),
}, ),
), ];
Section( return ListView.builder(
title: appLocalizations.settings, itemCount: items.length,
child: _getSettingList(), itemBuilder: (_, index) => items[index],
),
Section(
title: appLocalizations.other,
child: _getOtherList(),
),
];
return ListView.builder(
itemCount: items.length,
itemBuilder: (_, index) => items[index],
);
},
); );
} }
} }

View File

@@ -47,8 +47,6 @@
"autoRunDesc": "Auto run when the application is opened", "autoRunDesc": "Auto run when the application is opened",
"logcat": "Logcat", "logcat": "Logcat",
"logcatDesc": "Disabling will hide the log entry", "logcatDesc": "Disabling will hide the log entry",
"autoCheckUpdate": "Auto check updates",
"autoCheckUpdateDesc": "Auto check for updates when the app starts",
"accessControl": "AccessControl", "accessControl": "AccessControl",
"accessControlDesc": "Configure application access proxy", "accessControlDesc": "Configure application access proxy",
"application": "Application", "application": "Application",
@@ -116,6 +114,7 @@
"systemProxy": "SystemProxy", "systemProxy": "SystemProxy",
"project": "Project", "project": "Project",
"core": "Core", "core": "Core",
"checkUpdate": "Check update",
"tabAnimation": "Tab animation", "tabAnimation": "Tab animation",
"tabAnimationDesc": "When enabled, the home tab will add a toggle animation", "tabAnimationDesc": "When enabled, the home tab will add a toggle animation",
"desc": "A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.", "desc": "A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.",
@@ -125,31 +124,5 @@
"compatible": "Compatibility mode", "compatible": "Compatibility mode",
"compatibleDesc": "Opening it will lose part of its application ability and gain the support of full amount of Clash.", "compatibleDesc": "Opening it will lose part of its application ability and gain the support of full amount of Clash.",
"notSelectedTip": "The current proxy group cannot be selected.", "notSelectedTip": "The current proxy group cannot be selected.",
"tip": "tip", "tip": "tip"
"backupAndRecovery": "Backup and Recovery",
"backupAndRecoveryDesc": "Sync data by WebDAV",
"account": "Account",
"backup": "Backup",
"backupDesc": "Backup local data to WebDAV",
"recovery": "Recovery",
"recoveryDesc": "Recovery data from WebDAV",
"recoveryProfiles": "Only recovery profiles",
"recoveryAll": "Recovery all data",
"recoverySuccess": "Recovery success",
"backupSuccess": "Backup success",
"noInfo": "No info",
"pleaseBindWebDAV": "Please bind WebDAV",
"bind": "Bind",
"connectivity": "Connectivity",
"webDAVConfiguration": "WebDAV configuration",
"address": "Address",
"addressHelp": "WebDAV server address",
"addressTip": "Please enter a valid WebDAV address",
"password": "Password",
"passwordTip": "Password cannot be empty",
"accountTip": "Account cannot be empty",
"checkUpdate": "Check for updates",
"discoverNewVersion": "Discover the new version",
"checkUpdateError": "The current application is already the latest version",
"goDownload": "Go to download"
} }

View File

@@ -47,8 +47,6 @@
"autoRunDesc": "应用打开时自动运行", "autoRunDesc": "应用打开时自动运行",
"logcat": "日志捕获", "logcat": "日志捕获",
"logcatDesc": "禁用将会隐藏日志入口", "logcatDesc": "禁用将会隐藏日志入口",
"autoCheckUpdate": "自动检查更新",
"autoCheckUpdateDesc": "应用启动时自动检查更新",
"accessControl": "访问控制", "accessControl": "访问控制",
"accessControlDesc": "配置应用访问代理", "accessControlDesc": "配置应用访问代理",
"application": "应用程序", "application": "应用程序",
@@ -116,6 +114,7 @@
"systemProxy": "系统代理", "systemProxy": "系统代理",
"project": "项目", "project": "项目",
"core": "内核", "core": "内核",
"checkUpdate": "检查更新",
"tabAnimation": "选项卡动画", "tabAnimation": "选项卡动画",
"tabAnimationDesc": "开启后,主页选项卡将添加切换动画", "tabAnimationDesc": "开启后,主页选项卡将添加切换动画",
"desc": "基于ClashMeta的多平台代理客户端简单易用开源无广告。", "desc": "基于ClashMeta的多平台代理客户端简单易用开源无广告。",
@@ -125,31 +124,5 @@
"compatible": "兼容模式", "compatible": "兼容模式",
"compatibleDesc": "开启将失去部分应用能力获得全量的Clash的支持", "compatibleDesc": "开启将失去部分应用能力获得全量的Clash的支持",
"notSelectedTip": "当前代理组无法选中", "notSelectedTip": "当前代理组无法选中",
"tip": "提示", "tip": "提示"
"backupAndRecovery": "备份与恢复",
"backupAndRecoveryDesc": "通过WebDAV同步数据",
"account": "账号",
"backup": "备份",
"backupDesc": "备份数据到WebDAV",
"recovery": "恢复",
"recoveryDesc": "从WebDAV恢复数据",
"recoveryProfiles": "仅恢复配置文件",
"recoveryAll": "恢复所有数据",
"recoverySuccess": "恢复成功",
"backupSuccess": "备份成功",
"noInfo": "暂无信息",
"pleaseBindWebDAV": "请绑定WebDAV",
"bind": "绑定",
"connectivity": "连通性:",
"webDAVConfiguration": "WebDAV配置",
"address": "地址",
"addressHelp": "WebDAV服务器地址",
"addressTip": "请输入有效的WebDAV地址",
"password": "密码",
"passwordTip": "密码不能为空",
"accountTip": "账号不能为空",
"checkUpdate": "检查更新",
"discoverNewVersion": "发现新版本",
"checkUpdateError": "当前应用已经是最新版了",
"goDownload": "前往下载"
} }

View File

@@ -30,15 +30,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Configure application access proxy"), "Configure application access proxy"),
"accessControlNotAllowDesc": MessageLookupByLibrary.simpleMessage( "accessControlNotAllowDesc": MessageLookupByLibrary.simpleMessage(
"The selected application will be excluded from VPN"), "The selected application will be excluded from VPN"),
"account": MessageLookupByLibrary.simpleMessage("Account"),
"accountTip":
MessageLookupByLibrary.simpleMessage("Account cannot be empty"),
"add": MessageLookupByLibrary.simpleMessage("Add"), "add": MessageLookupByLibrary.simpleMessage("Add"),
"address": MessageLookupByLibrary.simpleMessage("Address"),
"addressHelp":
MessageLookupByLibrary.simpleMessage("WebDAV server address"),
"addressTip": MessageLookupByLibrary.simpleMessage(
"Please enter a valid WebDAV address"),
"ago": MessageLookupByLibrary.simpleMessage(" Ago"), "ago": MessageLookupByLibrary.simpleMessage(" Ago"),
"allowLan": MessageLookupByLibrary.simpleMessage("AllowLan"), "allowLan": MessageLookupByLibrary.simpleMessage("AllowLan"),
"allowLanDesc": MessageLookupByLibrary.simpleMessage( "allowLanDesc": MessageLookupByLibrary.simpleMessage(
@@ -49,10 +41,6 @@ class MessageLookup extends MessageLookupByLibrary {
"applicationDesc": MessageLookupByLibrary.simpleMessage( "applicationDesc": MessageLookupByLibrary.simpleMessage(
"Modify application related settings"), "Modify application related settings"),
"auto": MessageLookupByLibrary.simpleMessage("Auto"), "auto": MessageLookupByLibrary.simpleMessage("Auto"),
"autoCheckUpdate":
MessageLookupByLibrary.simpleMessage("Auto check updates"),
"autoCheckUpdateDesc": MessageLookupByLibrary.simpleMessage(
"Auto check for updates when the app starts"),
"autoLaunch": MessageLookupByLibrary.simpleMessage("AutoLaunch"), "autoLaunch": MessageLookupByLibrary.simpleMessage("AutoLaunch"),
"autoLaunchDesc": MessageLookupByLibrary.simpleMessage( "autoLaunchDesc": MessageLookupByLibrary.simpleMessage(
"Follow the system self startup"), "Follow the system self startup"),
@@ -62,30 +50,17 @@ class MessageLookup extends MessageLookupByLibrary {
"autoUpdate": MessageLookupByLibrary.simpleMessage("Auto update"), "autoUpdate": MessageLookupByLibrary.simpleMessage("Auto update"),
"autoUpdateInterval": MessageLookupByLibrary.simpleMessage( "autoUpdateInterval": MessageLookupByLibrary.simpleMessage(
"Auto update interval (minutes)"), "Auto update interval (minutes)"),
"backup": MessageLookupByLibrary.simpleMessage("Backup"),
"backupAndRecovery":
MessageLookupByLibrary.simpleMessage("Backup and Recovery"),
"backupAndRecoveryDesc":
MessageLookupByLibrary.simpleMessage("Sync data by WebDAV"),
"backupDesc":
MessageLookupByLibrary.simpleMessage("Backup local data to WebDAV"),
"backupSuccess": MessageLookupByLibrary.simpleMessage("Backup success"),
"bind": MessageLookupByLibrary.simpleMessage("Bind"),
"blacklistMode": MessageLookupByLibrary.simpleMessage("Blacklist mode"), "blacklistMode": MessageLookupByLibrary.simpleMessage("Blacklist mode"),
"cancelFilterSystemApp": "cancelFilterSystemApp":
MessageLookupByLibrary.simpleMessage("Cancel filter system app"), MessageLookupByLibrary.simpleMessage("Cancel filter system app"),
"cancelSelectAll": "cancelSelectAll":
MessageLookupByLibrary.simpleMessage("Cancel select all"), MessageLookupByLibrary.simpleMessage("Cancel select all"),
"checkUpdate": "checkUpdate": MessageLookupByLibrary.simpleMessage("Check update"),
MessageLookupByLibrary.simpleMessage("Check for updates"),
"checkUpdateError": MessageLookupByLibrary.simpleMessage(
"The current application is already the latest version"),
"compatible": "compatible":
MessageLookupByLibrary.simpleMessage("Compatibility mode"), MessageLookupByLibrary.simpleMessage("Compatibility mode"),
"compatibleDesc": MessageLookupByLibrary.simpleMessage( "compatibleDesc": MessageLookupByLibrary.simpleMessage(
"Opening it will lose part of its application ability and gain the support of full amount of Clash."), "Opening it will lose part of its application ability and gain the support of full amount of Clash."),
"confirm": MessageLookupByLibrary.simpleMessage("Confirm"), "confirm": MessageLookupByLibrary.simpleMessage("Confirm"),
"connectivity": MessageLookupByLibrary.simpleMessage("Connectivity"),
"core": MessageLookupByLibrary.simpleMessage("Core"), "core": MessageLookupByLibrary.simpleMessage("Core"),
"coreInfo": MessageLookupByLibrary.simpleMessage("Core info"), "coreInfo": MessageLookupByLibrary.simpleMessage("Core info"),
"create": MessageLookupByLibrary.simpleMessage("Create"), "create": MessageLookupByLibrary.simpleMessage("Create"),
@@ -99,8 +74,6 @@ class MessageLookup extends MessageLookupByLibrary {
"desc": MessageLookupByLibrary.simpleMessage( "desc": MessageLookupByLibrary.simpleMessage(
"A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free."), "A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free."),
"direct": MessageLookupByLibrary.simpleMessage("Direct"), "direct": MessageLookupByLibrary.simpleMessage("Direct"),
"discoverNewVersion":
MessageLookupByLibrary.simpleMessage("Discover the new version"),
"discovery": "discovery":
MessageLookupByLibrary.simpleMessage("Discovery a new version"), MessageLookupByLibrary.simpleMessage("Discovery a new version"),
"doYouWantToPass": "doYouWantToPass":
@@ -115,7 +88,6 @@ class MessageLookup extends MessageLookupByLibrary {
"filterSystemApp": "filterSystemApp":
MessageLookupByLibrary.simpleMessage("Filter system app"), MessageLookupByLibrary.simpleMessage("Filter system app"),
"global": MessageLookupByLibrary.simpleMessage("Global"), "global": MessageLookupByLibrary.simpleMessage("Global"),
"goDownload": MessageLookupByLibrary.simpleMessage("Go to download"),
"hours": MessageLookupByLibrary.simpleMessage("Hours"), "hours": MessageLookupByLibrary.simpleMessage("Hours"),
"importFromURL": "importFromURL":
MessageLookupByLibrary.simpleMessage("Import from URL"), MessageLookupByLibrary.simpleMessage("Import from URL"),
@@ -140,7 +112,6 @@ class MessageLookup extends MessageLookupByLibrary {
"networkDetection": "networkDetection":
MessageLookupByLibrary.simpleMessage("Network detection"), MessageLookupByLibrary.simpleMessage("Network detection"),
"networkSpeed": MessageLookupByLibrary.simpleMessage("Network speed"), "networkSpeed": MessageLookupByLibrary.simpleMessage("Network speed"),
"noInfo": MessageLookupByLibrary.simpleMessage("No info"),
"noMoreInfoDesc": MessageLookupByLibrary.simpleMessage("No more info"), "noMoreInfoDesc": MessageLookupByLibrary.simpleMessage("No more info"),
"noProxy": MessageLookupByLibrary.simpleMessage("No proxy"), "noProxy": MessageLookupByLibrary.simpleMessage("No proxy"),
"noProxyDesc": MessageLookupByLibrary.simpleMessage( "noProxyDesc": MessageLookupByLibrary.simpleMessage(
@@ -157,11 +128,6 @@ class MessageLookup extends MessageLookupByLibrary {
"override": MessageLookupByLibrary.simpleMessage("Override"), "override": MessageLookupByLibrary.simpleMessage("Override"),
"overrideDesc": MessageLookupByLibrary.simpleMessage( "overrideDesc": MessageLookupByLibrary.simpleMessage(
"Override Proxy related config"), "Override Proxy related config"),
"password": MessageLookupByLibrary.simpleMessage("Password"),
"passwordTip":
MessageLookupByLibrary.simpleMessage("Password cannot be empty"),
"pleaseBindWebDAV":
MessageLookupByLibrary.simpleMessage("Please bind WebDAV"),
"pleaseUploadFile": "pleaseUploadFile":
MessageLookupByLibrary.simpleMessage("Please upload file"), MessageLookupByLibrary.simpleMessage("Please upload file"),
"pleaseUploadValidQrcode": MessageLookupByLibrary.simpleMessage( "pleaseUploadValidQrcode": MessageLookupByLibrary.simpleMessage(
@@ -190,15 +156,6 @@ class MessageLookup extends MessageLookupByLibrary {
"qrcode": MessageLookupByLibrary.simpleMessage("QR code"), "qrcode": MessageLookupByLibrary.simpleMessage("QR code"),
"qrcodeDesc": MessageLookupByLibrary.simpleMessage( "qrcodeDesc": MessageLookupByLibrary.simpleMessage(
"Scan QR code to obtain profile"), "Scan QR code to obtain profile"),
"recovery": MessageLookupByLibrary.simpleMessage("Recovery"),
"recoveryAll":
MessageLookupByLibrary.simpleMessage("Recovery all data"),
"recoveryDesc":
MessageLookupByLibrary.simpleMessage("Recovery data from WebDAV"),
"recoveryProfiles":
MessageLookupByLibrary.simpleMessage("Only recovery profiles"),
"recoverySuccess":
MessageLookupByLibrary.simpleMessage("Recovery success"),
"rule": MessageLookupByLibrary.simpleMessage("Rule"), "rule": MessageLookupByLibrary.simpleMessage("Rule"),
"save": MessageLookupByLibrary.simpleMessage("Save"), "save": MessageLookupByLibrary.simpleMessage("Save"),
"selectAll": MessageLookupByLibrary.simpleMessage("Select all"), "selectAll": MessageLookupByLibrary.simpleMessage("Select all"),
@@ -234,8 +191,6 @@ class MessageLookup extends MessageLookupByLibrary {
"url": MessageLookupByLibrary.simpleMessage("URL"), "url": MessageLookupByLibrary.simpleMessage("URL"),
"urlDesc": "urlDesc":
MessageLookupByLibrary.simpleMessage("Obtain profile through URL"), MessageLookupByLibrary.simpleMessage("Obtain profile through URL"),
"webDAVConfiguration":
MessageLookupByLibrary.simpleMessage("WebDAV configuration"),
"whitelistMode": MessageLookupByLibrary.simpleMessage("Whitelist mode"), "whitelistMode": MessageLookupByLibrary.simpleMessage("Whitelist mode"),
"years": MessageLookupByLibrary.simpleMessage("Years"), "years": MessageLookupByLibrary.simpleMessage("Years"),
"zh_CN": MessageLookupByLibrary.simpleMessage("Simplified Chinese") "zh_CN": MessageLookupByLibrary.simpleMessage("Simplified Chinese")

View File

@@ -29,12 +29,7 @@ class MessageLookup extends MessageLookupByLibrary {
"accessControlDesc": MessageLookupByLibrary.simpleMessage("配置应用访问代理"), "accessControlDesc": MessageLookupByLibrary.simpleMessage("配置应用访问代理"),
"accessControlNotAllowDesc": "accessControlNotAllowDesc":
MessageLookupByLibrary.simpleMessage("选中应用将会被排除在VPN之外"), MessageLookupByLibrary.simpleMessage("选中应用将会被排除在VPN之外"),
"account": MessageLookupByLibrary.simpleMessage("账号"),
"accountTip": MessageLookupByLibrary.simpleMessage("账号不能为空"),
"add": MessageLookupByLibrary.simpleMessage("添加"), "add": MessageLookupByLibrary.simpleMessage("添加"),
"address": MessageLookupByLibrary.simpleMessage("地址"),
"addressHelp": MessageLookupByLibrary.simpleMessage("WebDAV服务器地址"),
"addressTip": MessageLookupByLibrary.simpleMessage("请输入有效的WebDAV地址"),
"ago": MessageLookupByLibrary.simpleMessage(""), "ago": MessageLookupByLibrary.simpleMessage(""),
"allowLan": MessageLookupByLibrary.simpleMessage("局域网代理"), "allowLan": MessageLookupByLibrary.simpleMessage("局域网代理"),
"allowLanDesc": MessageLookupByLibrary.simpleMessage("允许通过局域网访问代理"), "allowLanDesc": MessageLookupByLibrary.simpleMessage("允许通过局域网访问代理"),
@@ -42,9 +37,6 @@ class MessageLookup extends MessageLookupByLibrary {
"application": MessageLookupByLibrary.simpleMessage("应用程序"), "application": MessageLookupByLibrary.simpleMessage("应用程序"),
"applicationDesc": MessageLookupByLibrary.simpleMessage("修改应用程序相关设置"), "applicationDesc": MessageLookupByLibrary.simpleMessage("修改应用程序相关设置"),
"auto": MessageLookupByLibrary.simpleMessage("自动"), "auto": MessageLookupByLibrary.simpleMessage("自动"),
"autoCheckUpdate": MessageLookupByLibrary.simpleMessage("自动检查更新"),
"autoCheckUpdateDesc":
MessageLookupByLibrary.simpleMessage("应用启动时自动检查更新"),
"autoLaunch": MessageLookupByLibrary.simpleMessage("自启动"), "autoLaunch": MessageLookupByLibrary.simpleMessage("自启动"),
"autoLaunchDesc": MessageLookupByLibrary.simpleMessage("跟随系统自启动"), "autoLaunchDesc": MessageLookupByLibrary.simpleMessage("跟随系统自启动"),
"autoRun": MessageLookupByLibrary.simpleMessage("自动运行"), "autoRun": MessageLookupByLibrary.simpleMessage("自动运行"),
@@ -52,24 +44,15 @@ class MessageLookup extends MessageLookupByLibrary {
"autoUpdate": MessageLookupByLibrary.simpleMessage("自动更新"), "autoUpdate": MessageLookupByLibrary.simpleMessage("自动更新"),
"autoUpdateInterval": "autoUpdateInterval":
MessageLookupByLibrary.simpleMessage("自动更新间隔(分钟)"), MessageLookupByLibrary.simpleMessage("自动更新间隔(分钟)"),
"backup": MessageLookupByLibrary.simpleMessage("备份"),
"backupAndRecovery": MessageLookupByLibrary.simpleMessage("备份与恢复"),
"backupAndRecoveryDesc":
MessageLookupByLibrary.simpleMessage("通过WebDAV同步数据"),
"backupDesc": MessageLookupByLibrary.simpleMessage("备份数据到WebDAV"),
"backupSuccess": MessageLookupByLibrary.simpleMessage("备份成功"),
"bind": MessageLookupByLibrary.simpleMessage("绑定"),
"blacklistMode": MessageLookupByLibrary.simpleMessage("黑名单模式"), "blacklistMode": MessageLookupByLibrary.simpleMessage("黑名单模式"),
"cancelFilterSystemApp": "cancelFilterSystemApp":
MessageLookupByLibrary.simpleMessage("取消过滤系统应用"), MessageLookupByLibrary.simpleMessage("取消过滤系统应用"),
"cancelSelectAll": MessageLookupByLibrary.simpleMessage("取消全选"), "cancelSelectAll": MessageLookupByLibrary.simpleMessage("取消全选"),
"checkUpdate": MessageLookupByLibrary.simpleMessage("检查更新"), "checkUpdate": MessageLookupByLibrary.simpleMessage("检查更新"),
"checkUpdateError": MessageLookupByLibrary.simpleMessage("当前应用已经是最新版了"),
"compatible": MessageLookupByLibrary.simpleMessage("兼容模式"), "compatible": MessageLookupByLibrary.simpleMessage("兼容模式"),
"compatibleDesc": "compatibleDesc":
MessageLookupByLibrary.simpleMessage("开启将失去部分应用能力获得全量的Clash的支持"), MessageLookupByLibrary.simpleMessage("开启将失去部分应用能力获得全量的Clash的支持"),
"confirm": MessageLookupByLibrary.simpleMessage("确定"), "confirm": MessageLookupByLibrary.simpleMessage("确定"),
"connectivity": MessageLookupByLibrary.simpleMessage("连通性:"),
"core": MessageLookupByLibrary.simpleMessage("内核"), "core": MessageLookupByLibrary.simpleMessage("内核"),
"coreInfo": MessageLookupByLibrary.simpleMessage("内核信息"), "coreInfo": MessageLookupByLibrary.simpleMessage("内核信息"),
"create": MessageLookupByLibrary.simpleMessage("创建"), "create": MessageLookupByLibrary.simpleMessage("创建"),
@@ -83,7 +66,6 @@ class MessageLookup extends MessageLookupByLibrary {
"desc": MessageLookupByLibrary.simpleMessage( "desc": MessageLookupByLibrary.simpleMessage(
"基于ClashMeta的多平台代理客户端简单易用开源无广告。"), "基于ClashMeta的多平台代理客户端简单易用开源无广告。"),
"direct": MessageLookupByLibrary.simpleMessage("直连"), "direct": MessageLookupByLibrary.simpleMessage("直连"),
"discoverNewVersion": MessageLookupByLibrary.simpleMessage("发现新版本"),
"discovery": MessageLookupByLibrary.simpleMessage("发现新版本"), "discovery": MessageLookupByLibrary.simpleMessage("发现新版本"),
"doYouWantToPass": MessageLookupByLibrary.simpleMessage("是否要通过"), "doYouWantToPass": MessageLookupByLibrary.simpleMessage("是否要通过"),
"download": MessageLookupByLibrary.simpleMessage("下载"), "download": MessageLookupByLibrary.simpleMessage("下载"),
@@ -94,7 +76,6 @@ class MessageLookup extends MessageLookupByLibrary {
"fileDesc": MessageLookupByLibrary.simpleMessage("直接上传配置文件"), "fileDesc": MessageLookupByLibrary.simpleMessage("直接上传配置文件"),
"filterSystemApp": MessageLookupByLibrary.simpleMessage("过滤系统应用"), "filterSystemApp": MessageLookupByLibrary.simpleMessage("过滤系统应用"),
"global": MessageLookupByLibrary.simpleMessage("全局"), "global": MessageLookupByLibrary.simpleMessage("全局"),
"goDownload": MessageLookupByLibrary.simpleMessage("前往下载"),
"hours": MessageLookupByLibrary.simpleMessage("小时"), "hours": MessageLookupByLibrary.simpleMessage("小时"),
"importFromURL": MessageLookupByLibrary.simpleMessage("从URL导入"), "importFromURL": MessageLookupByLibrary.simpleMessage("从URL导入"),
"just": MessageLookupByLibrary.simpleMessage("刚刚"), "just": MessageLookupByLibrary.simpleMessage("刚刚"),
@@ -115,7 +96,6 @@ class MessageLookup extends MessageLookupByLibrary {
"nameSort": MessageLookupByLibrary.simpleMessage("按名称排序"), "nameSort": MessageLookupByLibrary.simpleMessage("按名称排序"),
"networkDetection": MessageLookupByLibrary.simpleMessage("网络检测"), "networkDetection": MessageLookupByLibrary.simpleMessage("网络检测"),
"networkSpeed": MessageLookupByLibrary.simpleMessage("网络速度"), "networkSpeed": MessageLookupByLibrary.simpleMessage("网络速度"),
"noInfo": MessageLookupByLibrary.simpleMessage("暂无信息"),
"noMoreInfoDesc": MessageLookupByLibrary.simpleMessage("暂无更多信息"), "noMoreInfoDesc": MessageLookupByLibrary.simpleMessage("暂无更多信息"),
"noProxy": MessageLookupByLibrary.simpleMessage("暂无代理"), "noProxy": MessageLookupByLibrary.simpleMessage("暂无代理"),
"noProxyDesc": "noProxyDesc":
@@ -129,9 +109,6 @@ class MessageLookup extends MessageLookupByLibrary {
"outboundMode": MessageLookupByLibrary.simpleMessage("出站模式"), "outboundMode": MessageLookupByLibrary.simpleMessage("出站模式"),
"override": MessageLookupByLibrary.simpleMessage("覆写"), "override": MessageLookupByLibrary.simpleMessage("覆写"),
"overrideDesc": MessageLookupByLibrary.simpleMessage("覆写代理相关配置"), "overrideDesc": MessageLookupByLibrary.simpleMessage("覆写代理相关配置"),
"password": MessageLookupByLibrary.simpleMessage("密码"),
"passwordTip": MessageLookupByLibrary.simpleMessage("密码不能为空"),
"pleaseBindWebDAV": MessageLookupByLibrary.simpleMessage("请绑定WebDAV"),
"pleaseUploadFile": MessageLookupByLibrary.simpleMessage("请上传文件"), "pleaseUploadFile": MessageLookupByLibrary.simpleMessage("请上传文件"),
"pleaseUploadValidQrcode": "pleaseUploadValidQrcode":
MessageLookupByLibrary.simpleMessage("请上传有效的二维码"), MessageLookupByLibrary.simpleMessage("请上传有效的二维码"),
@@ -156,11 +133,6 @@ class MessageLookup extends MessageLookupByLibrary {
"proxyPort": MessageLookupByLibrary.simpleMessage("代理端口"), "proxyPort": MessageLookupByLibrary.simpleMessage("代理端口"),
"qrcode": MessageLookupByLibrary.simpleMessage("二维码"), "qrcode": MessageLookupByLibrary.simpleMessage("二维码"),
"qrcodeDesc": MessageLookupByLibrary.simpleMessage("扫描二维码获取配置文件"), "qrcodeDesc": MessageLookupByLibrary.simpleMessage("扫描二维码获取配置文件"),
"recovery": MessageLookupByLibrary.simpleMessage("恢复"),
"recoveryAll": MessageLookupByLibrary.simpleMessage("恢复所有数据"),
"recoveryDesc": MessageLookupByLibrary.simpleMessage("从WebDAV恢复数据"),
"recoveryProfiles": MessageLookupByLibrary.simpleMessage("仅恢复配置文件"),
"recoverySuccess": MessageLookupByLibrary.simpleMessage("恢复成功"),
"rule": MessageLookupByLibrary.simpleMessage("规则"), "rule": MessageLookupByLibrary.simpleMessage("规则"),
"save": MessageLookupByLibrary.simpleMessage("保存"), "save": MessageLookupByLibrary.simpleMessage("保存"),
"selectAll": MessageLookupByLibrary.simpleMessage("全选"), "selectAll": MessageLookupByLibrary.simpleMessage("全选"),
@@ -191,7 +163,6 @@ class MessageLookup extends MessageLookupByLibrary {
"upload": MessageLookupByLibrary.simpleMessage("上传"), "upload": MessageLookupByLibrary.simpleMessage("上传"),
"url": MessageLookupByLibrary.simpleMessage("URL"), "url": MessageLookupByLibrary.simpleMessage("URL"),
"urlDesc": MessageLookupByLibrary.simpleMessage("直接上传配置文件"), "urlDesc": MessageLookupByLibrary.simpleMessage("直接上传配置文件"),
"webDAVConfiguration": MessageLookupByLibrary.simpleMessage("WebDAV配置"),
"whitelistMode": MessageLookupByLibrary.simpleMessage("白名单模式"), "whitelistMode": MessageLookupByLibrary.simpleMessage("白名单模式"),
"years": MessageLookupByLibrary.simpleMessage(""), "years": MessageLookupByLibrary.simpleMessage(""),
"zh_CN": MessageLookupByLibrary.simpleMessage("中文简体") "zh_CN": MessageLookupByLibrary.simpleMessage("中文简体")

View File

@@ -530,26 +530,6 @@ class AppLocalizations {
); );
} }
/// `Auto check updates`
String get autoCheckUpdate {
return Intl.message(
'Auto check updates',
name: 'autoCheckUpdate',
desc: '',
args: [],
);
}
/// `Auto check for updates when the app starts`
String get autoCheckUpdateDesc {
return Intl.message(
'Auto check for updates when the app starts',
name: 'autoCheckUpdateDesc',
desc: '',
args: [],
);
}
/// `AccessControl` /// `AccessControl`
String get accessControl { String get accessControl {
return Intl.message( return Intl.message(
@@ -1220,6 +1200,16 @@ class AppLocalizations {
); );
} }
/// `Check update`
String get checkUpdate {
return Intl.message(
'Check update',
name: 'checkUpdate',
desc: '',
args: [],
);
}
/// `Tab animation` /// `Tab animation`
String get tabAnimation { String get tabAnimation {
return Intl.message( return Intl.message(
@@ -1319,266 +1309,6 @@ class AppLocalizations {
args: [], args: [],
); );
} }
/// `Backup and Recovery`
String get backupAndRecovery {
return Intl.message(
'Backup and Recovery',
name: 'backupAndRecovery',
desc: '',
args: [],
);
}
/// `Sync data by WebDAV`
String get backupAndRecoveryDesc {
return Intl.message(
'Sync data by WebDAV',
name: 'backupAndRecoveryDesc',
desc: '',
args: [],
);
}
/// `Account`
String get account {
return Intl.message(
'Account',
name: 'account',
desc: '',
args: [],
);
}
/// `Backup`
String get backup {
return Intl.message(
'Backup',
name: 'backup',
desc: '',
args: [],
);
}
/// `Backup local data to WebDAV`
String get backupDesc {
return Intl.message(
'Backup local data to WebDAV',
name: 'backupDesc',
desc: '',
args: [],
);
}
/// `Recovery`
String get recovery {
return Intl.message(
'Recovery',
name: 'recovery',
desc: '',
args: [],
);
}
/// `Recovery data from WebDAV`
String get recoveryDesc {
return Intl.message(
'Recovery data from WebDAV',
name: 'recoveryDesc',
desc: '',
args: [],
);
}
/// `Only recovery profiles`
String get recoveryProfiles {
return Intl.message(
'Only recovery profiles',
name: 'recoveryProfiles',
desc: '',
args: [],
);
}
/// `Recovery all data`
String get recoveryAll {
return Intl.message(
'Recovery all data',
name: 'recoveryAll',
desc: '',
args: [],
);
}
/// `Recovery success`
String get recoverySuccess {
return Intl.message(
'Recovery success',
name: 'recoverySuccess',
desc: '',
args: [],
);
}
/// `Backup success`
String get backupSuccess {
return Intl.message(
'Backup success',
name: 'backupSuccess',
desc: '',
args: [],
);
}
/// `No info`
String get noInfo {
return Intl.message(
'No info',
name: 'noInfo',
desc: '',
args: [],
);
}
/// `Please bind WebDAV`
String get pleaseBindWebDAV {
return Intl.message(
'Please bind WebDAV',
name: 'pleaseBindWebDAV',
desc: '',
args: [],
);
}
/// `Bind`
String get bind {
return Intl.message(
'Bind',
name: 'bind',
desc: '',
args: [],
);
}
/// `Connectivity`
String get connectivity {
return Intl.message(
'Connectivity',
name: 'connectivity',
desc: '',
args: [],
);
}
/// `WebDAV configuration`
String get webDAVConfiguration {
return Intl.message(
'WebDAV configuration',
name: 'webDAVConfiguration',
desc: '',
args: [],
);
}
/// `Address`
String get address {
return Intl.message(
'Address',
name: 'address',
desc: '',
args: [],
);
}
/// `WebDAV server address`
String get addressHelp {
return Intl.message(
'WebDAV server address',
name: 'addressHelp',
desc: '',
args: [],
);
}
/// `Please enter a valid WebDAV address`
String get addressTip {
return Intl.message(
'Please enter a valid WebDAV address',
name: 'addressTip',
desc: '',
args: [],
);
}
/// `Password`
String get password {
return Intl.message(
'Password',
name: 'password',
desc: '',
args: [],
);
}
/// `Password cannot be empty`
String get passwordTip {
return Intl.message(
'Password cannot be empty',
name: 'passwordTip',
desc: '',
args: [],
);
}
/// `Account cannot be empty`
String get accountTip {
return Intl.message(
'Account cannot be empty',
name: 'accountTip',
desc: '',
args: [],
);
}
/// `Check for updates`
String get checkUpdate {
return Intl.message(
'Check for updates',
name: 'checkUpdate',
desc: '',
args: [],
);
}
/// `Discover the new version`
String get discoverNewVersion {
return Intl.message(
'Discover the new version',
name: 'discoverNewVersion',
desc: '',
args: [],
);
}
/// `The current application is already the latest version`
String get checkUpdateError {
return Intl.message(
'The current application is already the latest version',
name: 'checkUpdateError',
desc: '',
args: [],
);
}
/// `Go to download`
String get goDownload {
return Intl.message(
'Go to download',
name: 'goDownload',
desc: '',
args: [],
);
}
} }
class AppLocalizationDelegate extends LocalizationsDelegate<AppLocalizations> { class AppLocalizationDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -21,7 +21,6 @@ Future<void> main() async {
mode: clashConfig.mode, mode: clashConfig.mode,
isCompatible: config.isCompatible, isCompatible: config.isCompatible,
selectedMap: config.currentSelectedMap, selectedMap: config.currentSelectedMap,
viewWidth: other.getViewWidth(),
); );
await globalState.init( await globalState.init(
appState: appState, appState: appState,

View File

@@ -1,10 +1,10 @@
import 'package:collection/collection.dart'; import 'package:collection/collection.dart';
import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart'; import 'package:fl_clash/enum/enum.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'ffi.dart'; import 'ffi.dart';
import 'log.dart'; import 'log.dart';
import 'navigation.dart'; import 'navigation.dart';
import 'package.dart';
import 'profile.dart'; import 'profile.dart';
import 'proxy.dart'; import 'proxy.dart';
import 'system_color_scheme.dart'; import 'system_color_scheme.dart';
@@ -20,6 +20,7 @@ class AppState with ChangeNotifier {
VersionInfo? _versionInfo; VersionInfo? _versionInfo;
List<Traffic> _traffics; List<Traffic> _traffics;
List<Log> _logs; List<Log> _logs;
List<Package> _packages;
String _currentLabel; String _currentLabel;
SystemColorSchemes _systemColorSchemes; SystemColorSchemes _systemColorSchemes;
num _sortNum; num _sortNum;
@@ -28,11 +29,9 @@ class AppState with ChangeNotifier {
SelectedMap _selectedMap; SelectedMap _selectedMap;
bool _isCompatible; bool _isCompatible;
List<Group> _groups; List<Group> _groups;
double _viewWidth;
AppState({ AppState({
required Mode mode, required Mode mode,
double? viewWidth,
required bool isCompatible, required bool isCompatible,
required SelectedMap selectedMap, required SelectedMap selectedMap,
}) : _navigationItems = [], }) : _navigationItems = [],
@@ -40,8 +39,8 @@ class AppState with ChangeNotifier {
_currentLabel = "dashboard", _currentLabel = "dashboard",
_traffics = [], _traffics = [],
_logs = [], _logs = [],
_viewWidth = viewWidth ?? 0,
_selectedMap = selectedMap, _selectedMap = selectedMap,
_packages = [],
_sortNum = 0, _sortNum = 0,
_mode = mode, _mode = mode,
_delayMap = {}, _delayMap = {},
@@ -67,20 +66,6 @@ class AppState with ChangeNotifier {
} }
} }
List<NavigationItem> get currentNavigationItems {
NavigationItemMode navigationItemMode;
if (_viewWidth <= maxMobileWidth) {
navigationItemMode = NavigationItemMode.mobile;
} else {
navigationItemMode = NavigationItemMode.desktop;
}
return navigationItems
.where(
(element) => element.modes.contains(navigationItemMode),
)
.toList();
}
bool get isInit => _isInit; bool get isInit => _isInit;
set isInit(bool value) { set isInit(bool value) {
@@ -179,6 +164,14 @@ class AppState with ChangeNotifier {
} }
} }
List<Package> get packages => _packages;
set packages(List<Package> value) {
if (_packages != value) {
_packages = value;
notifyListeners();
}
}
List<Group> get groups => _groups; List<Group> get groups => _groups;
@@ -207,6 +200,19 @@ class AppState with ChangeNotifier {
} }
} }
// String? get currentProxyName {
// if (mode == Mode.direct) return UsedProxy.DIRECT.name;
// if (_currentProxyName != null) return _currentProxyName!;
// return currentGroup?.now;
// }
//
// set currentProxyName(String? value) {
// if (_currentProxyName != value) {
// _currentProxyName = value;
// notifyListeners();
// }
// }
bool get isCompatible { bool get isCompatible {
return _isCompatible; return _isCompatible;
} }
@@ -244,21 +250,6 @@ class AppState with ChangeNotifier {
} }
} }
double get viewWidth => _viewWidth;
set viewWidth(double value) {
if (_viewWidth != value) {
_viewWidth = value;
notifyListeners();
}
}
ViewMode get viewMode {
if (_viewWidth <= maxMobileWidth) return ViewMode.mobile;
if (_viewWidth <= maxLaptopWidth) return ViewMode.laptop;
return ViewMode.desktop;
}
DelayMap get delayMap { DelayMap get delayMap {
return _delayMap; return _delayMap;
} }

View File

@@ -11,13 +11,15 @@ part 'generated/clash_config.g.dart';
part 'generated/clash_config.freezed.dart'; part 'generated/clash_config.freezed.dart';
@freezed @freezed
class Tun with _$Tun { class Tun with _$Tun {
const factory Tun({ const factory Tun({
@Default(false) bool enable, @Default(false) bool enable,
@Default(appName) String device, @Default(appName) String device,
@Default(TunStack.gvisor) TunStack stack, @Default(TunStack.gvisor) TunStack stack,
@JsonKey(name: "dns-hijack") @Default(["any:53"]) List<String> dnsHijack, @JsonKey(name: "dns-hijack") @Default(["any:53"])
List<String> dnsHijack,
}) = _Tun; }) = _Tun;
factory Tun.fromJson(Map<String, Object?> json) => _$TunFromJson(json); factory Tun.fromJson(Map<String, Object?> json) => _$TunFromJson(json);
@@ -196,19 +198,6 @@ class ClashConfig extends ChangeNotifier {
} }
} }
update([ClashConfig? clashConfig]) {
if (clashConfig != null) {
_mixedPort = clashConfig._mixedPort;
_allowLan = clashConfig._allowLan;
_mode = clashConfig._mode;
_logLevel = clashConfig._logLevel;
_tun = clashConfig._tun;
_dns = clashConfig._dns;
_rules = clashConfig._rules;
}
notifyListeners();
}
Map<String, dynamic> toJson() { Map<String, dynamic> toJson() {
return _$ClashConfigToJson(this); return _$ClashConfigToJson(this);
} }
@@ -227,9 +216,4 @@ class ClashConfig extends ChangeNotifier {
allowLan: allowLan, allowLan: allowLan,
); );
} }
}
@override
String toString() {
return 'ClashConfig{_mixedPort: $_mixedPort, _allowLan: $_allowLan, _mode: $_mode, _logLevel: $_logLevel, _tun: $_tun, _dns: $_dns, _rules: $_rules}';
}
}

View File

@@ -11,10 +11,14 @@ class Result<T> {
this.data, this.data,
}); });
Result.success([this.data]) : type = ResultType.success, Result.success({
this.data,
}) : type = ResultType.success,
message = null; message = null;
Result.error([this.message]) : type = ResultType.error, Result.error({
this.message,
}) : type = ResultType.error,
data = null; data = null;
@override @override

View File

@@ -56,23 +56,6 @@ class AccessControl {
factory AccessControl.fromJson(Map<String, dynamic> json) { factory AccessControl.fromJson(Map<String, dynamic> json) {
return _$AccessControlFromJson(json); return _$AccessControlFromJson(json);
} }
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is AccessControl &&
runtimeType == other.runtimeType &&
mode == other.mode &&
acceptList == other.acceptList &&
rejectList == other.rejectList &&
isFilterSystemApp == other.isFilterSystemApp;
@override
int get hashCode =>
mode.hashCode ^
acceptList.hashCode ^
rejectList.hashCode ^
isFilterSystemApp.hashCode;
} }
@JsonSerializable() @JsonSerializable()
@@ -92,8 +75,6 @@ class Config extends ChangeNotifier {
bool _isAccessControl; bool _isAccessControl;
AccessControl _accessControl; AccessControl _accessControl;
bool _isAnimateToPage; bool _isAnimateToPage;
bool _autoCheckUpdate;
DAV? _dav;
Config() Config()
: _profiles = [], : _profiles = [],
@@ -103,11 +84,10 @@ class Config extends ChangeNotifier {
_themeMode = ThemeMode.system, _themeMode = ThemeMode.system,
_openLog = false, _openLog = false,
_isCompatible = false, _isCompatible = false,
_primaryColor = defaultPrimaryColor.value, _primaryColor = appConstant.defaultPrimaryColor.value,
_proxiesSortType = ProxiesSortType.none, _proxiesSortType = ProxiesSortType.none,
_isMinimizeOnExit = true, _isMinimizeOnExit = true,
_isAccessControl = false, _isAccessControl = false,
_autoCheckUpdate = true,
_accessControl = AccessControl(), _accessControl = AccessControl(),
_isAnimateToPage = true; _isAnimateToPage = true;
@@ -128,18 +108,17 @@ class Config extends ChangeNotifier {
} }
String? _getLabel(String? label, String id) { String? _getLabel(String? label, String id) {
final realLabel = label ?? id;
final hasDup = _profiles.indexWhere( final hasDup = _profiles.indexWhere(
(element) => element.label == realLabel && element.id != id) != (element) => element.label == label && element.id != id) !=
-1; -1;
if (hasDup) { if (hasDup) {
return _getLabel(other.getOverwriteLabel(realLabel), id); return _getLabel(other.getOverwriteLabel(label!), id);
} else { } else {
return label; return label;
} }
} }
_setProfile(Profile profile) { setProfile(Profile profile) {
final List<Profile> profilesTemp = List.from(_profiles); final List<Profile> profilesTemp = List.from(_profiles);
final index = final index =
profilesTemp.indexWhere((element) => element.id == profile.id); profilesTemp.indexWhere((element) => element.id == profile.id);
@@ -152,10 +131,6 @@ class Config extends ChangeNotifier {
profilesTemp[index] = updateProfile; profilesTemp[index] = updateProfile;
} }
_profiles = profilesTemp; _profiles = profilesTemp;
}
setProfile(Profile profile) {
_setProfile(profile);
notifyListeners(); notifyListeners();
} }
@@ -186,6 +161,7 @@ class Config extends ChangeNotifier {
} }
} }
SelectedMap get currentSelectedMap { SelectedMap get currentSelectedMap {
return currentProfile?.selectedMap ?? {}; return currentProfile?.selectedMap ?? {};
} }
@@ -304,18 +280,9 @@ class Config extends ChangeNotifier {
AccessControl get accessControl => _accessControl; AccessControl get accessControl => _accessControl;
set accessControl(AccessControl value) { set accessControl(AccessControl? value) {
if (_accessControl != value) { if (_accessControl != value) {
_accessControl = value; _accessControl = value ?? AccessControl();
notifyListeners();
}
}
DAV? get dav => _dav;
set dav(DAV? value) {
if (_dav != value) {
_dav = value;
notifyListeners(); notifyListeners();
} }
} }
@@ -345,46 +312,7 @@ class Config extends ChangeNotifier {
} }
} }
@JsonKey(defaultValue: true) update() {
bool get autoCheckUpdate {
return _autoCheckUpdate;
}
set autoCheckUpdate(bool value) {
if (_autoCheckUpdate != value) {
_autoCheckUpdate = value;
notifyListeners();
}
}
update([Config? config, RecoveryOption recoveryOptions = RecoveryOption.all]) {
if (config != null) {
_profiles = config._profiles;
for (final profile in config._profiles) {
_setProfile(profile);
}
final onlyProfiles = recoveryOptions == RecoveryOption.onlyProfiles;
if(_currentProfileId == null && onlyProfiles && profiles.isNotEmpty){
_currentProfileId = _profiles.first.id;
}
if(onlyProfiles) return;
_currentProfileId = config._currentProfileId;
_isCompatible = config._isCompatible;
_autoLaunch = config._autoLaunch;
_silentLaunch = config._silentLaunch;
_autoRun = config._autoRun;
_openLog = config._openLog;
_themeMode = config._themeMode;
_locale = config._locale;
_primaryColor = config._primaryColor;
_proxiesSortType = config._proxiesSortType;
_isMinimizeOnExit = config._isMinimizeOnExit;
_isAccessControl = config._isAccessControl;
_accessControl = config._accessControl;
_isAnimateToPage = config._isAnimateToPage;
_autoCheckUpdate = config._autoCheckUpdate;
_dav = config._dav;
}
notifyListeners(); notifyListeners();
} }
@@ -395,9 +323,4 @@ class Config extends ChangeNotifier {
factory Config.fromJson(Map<String, dynamic> json) { factory Config.fromJson(Map<String, dynamic> json) {
return _$ConfigFromJson(json); return _$ConfigFromJson(json);
} }
@override
String toString() {
return 'Config{_profiles: $_profiles, _isCompatible: $_isCompatible, _currentProfileId: $_currentProfileId, _autoLaunch: $_autoLaunch, _silentLaunch: $_silentLaunch, _autoRun: $_autoRun, _openLog: $_openLog, _themeMode: $_themeMode, _locale: $_locale, _primaryColor: $_primaryColor, _proxiesSortType: $_proxiesSortType, _isMinimizeOnExit: $_isMinimizeOnExit, _isAccessControl: $_isAccessControl, _accessControl: $_accessControl, _isAnimateToPage: $_isAnimateToPage, _dav: $_dav}';
}
} }

View File

@@ -1,17 +0,0 @@
import 'package:freezed_annotation/freezed_annotation.dart';
part 'generated/dav.g.dart';
part 'generated/dav.freezed.dart';
@freezed
class DAV with _$DAV{
const factory DAV({
required String uri,
required String user,
required String password,
}) = _DAV;
factory DAV.fromJson(Map<String, Object?> json) =>
_$DAVFromJson(json);
}

View File

@@ -55,12 +55,8 @@ Config _$ConfigFromJson(Map<String, dynamic> json) => Config()
..isAccessControl = json['isAccessControl'] as bool? ?? false ..isAccessControl = json['isAccessControl'] as bool? ?? false
..accessControl = ..accessControl =
AccessControl.fromJson(json['accessControl'] as Map<String, dynamic>) AccessControl.fromJson(json['accessControl'] as Map<String, dynamic>)
..dav = json['dav'] == null
? null
: DAV.fromJson(json['dav'] as Map<String, dynamic>)
..isAnimateToPage = json['isAnimateToPage'] as bool? ?? true ..isAnimateToPage = json['isAnimateToPage'] as bool? ?? true
..isCompatible = json['isCompatible'] as bool? ?? false ..isCompatible = json['isCompatible'] as bool? ?? false;
..autoCheckUpdate = json['autoCheckUpdate'] as bool? ?? true;
Map<String, dynamic> _$ConfigToJson(Config instance) => <String, dynamic>{ Map<String, dynamic> _$ConfigToJson(Config instance) => <String, dynamic>{
'profiles': instance.profiles, 'profiles': instance.profiles,
@@ -76,10 +72,8 @@ Map<String, dynamic> _$ConfigToJson(Config instance) => <String, dynamic>{
'isMinimizeOnExit': instance.isMinimizeOnExit, 'isMinimizeOnExit': instance.isMinimizeOnExit,
'isAccessControl': instance.isAccessControl, 'isAccessControl': instance.isAccessControl,
'accessControl': instance.accessControl, 'accessControl': instance.accessControl,
'dav': instance.dav,
'isAnimateToPage': instance.isAnimateToPage, 'isAnimateToPage': instance.isAnimateToPage,
'isCompatible': instance.isCompatible, 'isCompatible': instance.isCompatible,
'autoCheckUpdate': instance.autoCheckUpdate,
}; };
const _$ThemeModeEnumMap = { const _$ThemeModeEnumMap = {

View File

@@ -1,180 +0,0 @@
// coverage:ignore-file
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
part of '../dav.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
T _$identity<T>(T value) => value;
final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
DAV _$DAVFromJson(Map<String, dynamic> json) {
return _DAV.fromJson(json);
}
/// @nodoc
mixin _$DAV {
String get uri => throw _privateConstructorUsedError;
String get user => throw _privateConstructorUsedError;
String get password => throw _privateConstructorUsedError;
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$DAVCopyWith<DAV> get copyWith => throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $DAVCopyWith<$Res> {
factory $DAVCopyWith(DAV value, $Res Function(DAV) then) =
_$DAVCopyWithImpl<$Res, DAV>;
@useResult
$Res call({String uri, String user, String password});
}
/// @nodoc
class _$DAVCopyWithImpl<$Res, $Val extends DAV> implements $DAVCopyWith<$Res> {
_$DAVCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
@pragma('vm:prefer-inline')
@override
$Res call({
Object? uri = null,
Object? user = null,
Object? password = null,
}) {
return _then(_value.copyWith(
uri: null == uri
? _value.uri
: uri // ignore: cast_nullable_to_non_nullable
as String,
user: null == user
? _value.user
: user // ignore: cast_nullable_to_non_nullable
as String,
password: null == password
? _value.password
: password // ignore: cast_nullable_to_non_nullable
as String,
) as $Val);
}
}
/// @nodoc
abstract class _$$DAVImplCopyWith<$Res> implements $DAVCopyWith<$Res> {
factory _$$DAVImplCopyWith(_$DAVImpl value, $Res Function(_$DAVImpl) then) =
__$$DAVImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({String uri, String user, String password});
}
/// @nodoc
class __$$DAVImplCopyWithImpl<$Res> extends _$DAVCopyWithImpl<$Res, _$DAVImpl>
implements _$$DAVImplCopyWith<$Res> {
__$$DAVImplCopyWithImpl(_$DAVImpl _value, $Res Function(_$DAVImpl) _then)
: super(_value, _then);
@pragma('vm:prefer-inline')
@override
$Res call({
Object? uri = null,
Object? user = null,
Object? password = null,
}) {
return _then(_$DAVImpl(
uri: null == uri
? _value.uri
: uri // ignore: cast_nullable_to_non_nullable
as String,
user: null == user
? _value.user
: user // ignore: cast_nullable_to_non_nullable
as String,
password: null == password
? _value.password
: password // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
@JsonSerializable()
class _$DAVImpl implements _DAV {
const _$DAVImpl(
{required this.uri, required this.user, required this.password});
factory _$DAVImpl.fromJson(Map<String, dynamic> json) =>
_$$DAVImplFromJson(json);
@override
final String uri;
@override
final String user;
@override
final String password;
@override
String toString() {
return 'DAV(uri: $uri, user: $user, password: $password)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$DAVImpl &&
(identical(other.uri, uri) || other.uri == uri) &&
(identical(other.user, user) || other.user == user) &&
(identical(other.password, password) ||
other.password == password));
}
@JsonKey(ignore: true)
@override
int get hashCode => Object.hash(runtimeType, uri, user, password);
@JsonKey(ignore: true)
@override
@pragma('vm:prefer-inline')
_$$DAVImplCopyWith<_$DAVImpl> get copyWith =>
__$$DAVImplCopyWithImpl<_$DAVImpl>(this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$DAVImplToJson(
this,
);
}
}
abstract class _DAV implements DAV {
const factory _DAV(
{required final String uri,
required final String user,
required final String password}) = _$DAVImpl;
factory _DAV.fromJson(Map<String, dynamic> json) = _$DAVImpl.fromJson;
@override
String get uri;
@override
String get user;
@override
String get password;
@override
@JsonKey(ignore: true)
_$$DAVImplCopyWith<_$DAVImpl> get copyWith =>
throw _privateConstructorUsedError;
}

View File

@@ -1,19 +0,0 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of '../dav.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$DAVImpl _$$DAVImplFromJson(Map<String, dynamic> json) => _$DAVImpl(
uri: json['uri'] as String,
user: json['user'] as String,
password: json['password'] as String,
);
Map<String, dynamic> _$$DAVImplToJson(_$DAVImpl instance) => <String, dynamic>{
'uri': instance.uri,
'user': instance.user,
'password': instance.password,
};

View File

@@ -497,7 +497,6 @@ abstract class _NetworkDetectionSelectorState
mixin _$ProfilesSelectorState { mixin _$ProfilesSelectorState {
List<Profile> get profiles => throw _privateConstructorUsedError; List<Profile> get profiles => throw _privateConstructorUsedError;
String? get currentProfileId => throw _privateConstructorUsedError; String? get currentProfileId => throw _privateConstructorUsedError;
ViewMode get viewMode => throw _privateConstructorUsedError;
@JsonKey(ignore: true) @JsonKey(ignore: true)
$ProfilesSelectorStateCopyWith<ProfilesSelectorState> get copyWith => $ProfilesSelectorStateCopyWith<ProfilesSelectorState> get copyWith =>
@@ -510,8 +509,7 @@ abstract class $ProfilesSelectorStateCopyWith<$Res> {
$Res Function(ProfilesSelectorState) then) = $Res Function(ProfilesSelectorState) then) =
_$ProfilesSelectorStateCopyWithImpl<$Res, ProfilesSelectorState>; _$ProfilesSelectorStateCopyWithImpl<$Res, ProfilesSelectorState>;
@useResult @useResult
$Res call( $Res call({List<Profile> profiles, String? currentProfileId});
{List<Profile> profiles, String? currentProfileId, ViewMode viewMode});
} }
/// @nodoc /// @nodoc
@@ -530,7 +528,6 @@ class _$ProfilesSelectorStateCopyWithImpl<$Res,
$Res call({ $Res call({
Object? profiles = null, Object? profiles = null,
Object? currentProfileId = freezed, Object? currentProfileId = freezed,
Object? viewMode = null,
}) { }) {
return _then(_value.copyWith( return _then(_value.copyWith(
profiles: null == profiles profiles: null == profiles
@@ -541,10 +538,6 @@ class _$ProfilesSelectorStateCopyWithImpl<$Res,
? _value.currentProfileId ? _value.currentProfileId
: currentProfileId // ignore: cast_nullable_to_non_nullable : currentProfileId // ignore: cast_nullable_to_non_nullable
as String?, as String?,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
) as $Val); ) as $Val);
} }
} }
@@ -558,8 +551,7 @@ abstract class _$$ProfilesSelectorStateImplCopyWith<$Res>
__$$ProfilesSelectorStateImplCopyWithImpl<$Res>; __$$ProfilesSelectorStateImplCopyWithImpl<$Res>;
@override @override
@useResult @useResult
$Res call( $Res call({List<Profile> profiles, String? currentProfileId});
{List<Profile> profiles, String? currentProfileId, ViewMode viewMode});
} }
/// @nodoc /// @nodoc
@@ -576,7 +568,6 @@ class __$$ProfilesSelectorStateImplCopyWithImpl<$Res>
$Res call({ $Res call({
Object? profiles = null, Object? profiles = null,
Object? currentProfileId = freezed, Object? currentProfileId = freezed,
Object? viewMode = null,
}) { }) {
return _then(_$ProfilesSelectorStateImpl( return _then(_$ProfilesSelectorStateImpl(
profiles: null == profiles profiles: null == profiles
@@ -587,10 +578,6 @@ class __$$ProfilesSelectorStateImplCopyWithImpl<$Res>
? _value.currentProfileId ? _value.currentProfileId
: currentProfileId // ignore: cast_nullable_to_non_nullable : currentProfileId // ignore: cast_nullable_to_non_nullable
as String?, as String?,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
)); ));
} }
} }
@@ -599,9 +586,7 @@ class __$$ProfilesSelectorStateImplCopyWithImpl<$Res>
class _$ProfilesSelectorStateImpl implements _ProfilesSelectorState { class _$ProfilesSelectorStateImpl implements _ProfilesSelectorState {
const _$ProfilesSelectorStateImpl( const _$ProfilesSelectorStateImpl(
{required final List<Profile> profiles, {required final List<Profile> profiles, required this.currentProfileId})
required this.currentProfileId,
required this.viewMode})
: _profiles = profiles; : _profiles = profiles;
final List<Profile> _profiles; final List<Profile> _profiles;
@@ -614,12 +599,10 @@ class _$ProfilesSelectorStateImpl implements _ProfilesSelectorState {
@override @override
final String? currentProfileId; final String? currentProfileId;
@override
final ViewMode viewMode;
@override @override
String toString() { String toString() {
return 'ProfilesSelectorState(profiles: $profiles, currentProfileId: $currentProfileId, viewMode: $viewMode)'; return 'ProfilesSelectorState(profiles: $profiles, currentProfileId: $currentProfileId)';
} }
@override @override
@@ -629,17 +612,12 @@ class _$ProfilesSelectorStateImpl implements _ProfilesSelectorState {
other is _$ProfilesSelectorStateImpl && other is _$ProfilesSelectorStateImpl &&
const DeepCollectionEquality().equals(other._profiles, _profiles) && const DeepCollectionEquality().equals(other._profiles, _profiles) &&
(identical(other.currentProfileId, currentProfileId) || (identical(other.currentProfileId, currentProfileId) ||
other.currentProfileId == currentProfileId) && other.currentProfileId == currentProfileId));
(identical(other.viewMode, viewMode) ||
other.viewMode == viewMode));
} }
@override @override
int get hashCode => Object.hash( int get hashCode => Object.hash(runtimeType,
runtimeType, const DeepCollectionEquality().hash(_profiles), currentProfileId);
const DeepCollectionEquality().hash(_profiles),
currentProfileId,
viewMode);
@JsonKey(ignore: true) @JsonKey(ignore: true)
@override @override
@@ -652,16 +630,13 @@ class _$ProfilesSelectorStateImpl implements _ProfilesSelectorState {
abstract class _ProfilesSelectorState implements ProfilesSelectorState { abstract class _ProfilesSelectorState implements ProfilesSelectorState {
const factory _ProfilesSelectorState( const factory _ProfilesSelectorState(
{required final List<Profile> profiles, {required final List<Profile> profiles,
required final String? currentProfileId, required final String? currentProfileId}) = _$ProfilesSelectorStateImpl;
required final ViewMode viewMode}) = _$ProfilesSelectorStateImpl;
@override @override
List<Profile> get profiles; List<Profile> get profiles;
@override @override
String? get currentProfileId; String? get currentProfileId;
@override @override
ViewMode get viewMode;
@override
@JsonKey(ignore: true) @JsonKey(ignore: true)
_$$ProfilesSelectorStateImplCopyWith<_$ProfilesSelectorStateImpl> _$$ProfilesSelectorStateImplCopyWith<_$ProfilesSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
@@ -976,6 +951,159 @@ abstract class _ApplicationSelectorState implements ApplicationSelectorState {
get copyWith => throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
} }
/// @nodoc
mixin _$HomeLayoutSelectorState {
List<NavigationItem> get navigationItems =>
throw _privateConstructorUsedError;
int get currentIndex => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$HomeLayoutSelectorStateCopyWith<HomeLayoutSelectorState> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $HomeLayoutSelectorStateCopyWith<$Res> {
factory $HomeLayoutSelectorStateCopyWith(HomeLayoutSelectorState value,
$Res Function(HomeLayoutSelectorState) then) =
_$HomeLayoutSelectorStateCopyWithImpl<$Res, HomeLayoutSelectorState>;
@useResult
$Res call({List<NavigationItem> navigationItems, int currentIndex});
}
/// @nodoc
class _$HomeLayoutSelectorStateCopyWithImpl<$Res,
$Val extends HomeLayoutSelectorState>
implements $HomeLayoutSelectorStateCopyWith<$Res> {
_$HomeLayoutSelectorStateCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
@pragma('vm:prefer-inline')
@override
$Res call({
Object? navigationItems = null,
Object? currentIndex = null,
}) {
return _then(_value.copyWith(
navigationItems: null == navigationItems
? _value.navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
currentIndex: null == currentIndex
? _value.currentIndex
: currentIndex // ignore: cast_nullable_to_non_nullable
as int,
) as $Val);
}
}
/// @nodoc
abstract class _$$HomeLayoutSelectorStateImplCopyWith<$Res>
implements $HomeLayoutSelectorStateCopyWith<$Res> {
factory _$$HomeLayoutSelectorStateImplCopyWith(
_$HomeLayoutSelectorStateImpl value,
$Res Function(_$HomeLayoutSelectorStateImpl) then) =
__$$HomeLayoutSelectorStateImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({List<NavigationItem> navigationItems, int currentIndex});
}
/// @nodoc
class __$$HomeLayoutSelectorStateImplCopyWithImpl<$Res>
extends _$HomeLayoutSelectorStateCopyWithImpl<$Res,
_$HomeLayoutSelectorStateImpl>
implements _$$HomeLayoutSelectorStateImplCopyWith<$Res> {
__$$HomeLayoutSelectorStateImplCopyWithImpl(
_$HomeLayoutSelectorStateImpl _value,
$Res Function(_$HomeLayoutSelectorStateImpl) _then)
: super(_value, _then);
@pragma('vm:prefer-inline')
@override
$Res call({
Object? navigationItems = null,
Object? currentIndex = null,
}) {
return _then(_$HomeLayoutSelectorStateImpl(
navigationItems: null == navigationItems
? _value._navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
currentIndex: null == currentIndex
? _value.currentIndex
: currentIndex // ignore: cast_nullable_to_non_nullable
as int,
));
}
}
/// @nodoc
class _$HomeLayoutSelectorStateImpl implements _HomeLayoutSelectorState {
const _$HomeLayoutSelectorStateImpl(
{required final List<NavigationItem> navigationItems,
required this.currentIndex})
: _navigationItems = navigationItems;
final List<NavigationItem> _navigationItems;
@override
List<NavigationItem> get navigationItems {
if (_navigationItems is EqualUnmodifiableListView) return _navigationItems;
// ignore: implicit_dynamic_type
return EqualUnmodifiableListView(_navigationItems);
}
@override
final int currentIndex;
@override
String toString() {
return 'HomeLayoutSelectorState(navigationItems: $navigationItems, currentIndex: $currentIndex)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$HomeLayoutSelectorStateImpl &&
const DeepCollectionEquality()
.equals(other._navigationItems, _navigationItems) &&
(identical(other.currentIndex, currentIndex) ||
other.currentIndex == currentIndex));
}
@override
int get hashCode => Object.hash(runtimeType,
const DeepCollectionEquality().hash(_navigationItems), currentIndex);
@JsonKey(ignore: true)
@override
@pragma('vm:prefer-inline')
_$$HomeLayoutSelectorStateImplCopyWith<_$HomeLayoutSelectorStateImpl>
get copyWith => __$$HomeLayoutSelectorStateImplCopyWithImpl<
_$HomeLayoutSelectorStateImpl>(this, _$identity);
}
abstract class _HomeLayoutSelectorState implements HomeLayoutSelectorState {
const factory _HomeLayoutSelectorState(
{required final List<NavigationItem> navigationItems,
required final int currentIndex}) = _$HomeLayoutSelectorStateImpl;
@override
List<NavigationItem> get navigationItems;
@override
int get currentIndex;
@override
@JsonKey(ignore: true)
_$$HomeLayoutSelectorStateImplCopyWith<_$HomeLayoutSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError;
}
/// @nodoc /// @nodoc
mixin _$TrayContainerSelectorState { mixin _$TrayContainerSelectorState {
Mode get mode => throw _privateConstructorUsedError; Mode get mode => throw _privateConstructorUsedError;
@@ -1301,35 +1429,31 @@ abstract class _UpdateNavigationsSelector implements UpdateNavigationsSelector {
} }
/// @nodoc /// @nodoc
mixin _$HomeSelectorState { mixin _$HomeCommonScaffoldSelectorState {
String get currentLabel => throw _privateConstructorUsedError; String get currentLabel => throw _privateConstructorUsedError;
List<NavigationItem> get navigationItems =>
throw _privateConstructorUsedError;
ViewMode get viewMode => throw _privateConstructorUsedError;
String? get locale => throw _privateConstructorUsedError; String? get locale => throw _privateConstructorUsedError;
@JsonKey(ignore: true) @JsonKey(ignore: true)
$HomeSelectorStateCopyWith<HomeSelectorState> get copyWith => $HomeCommonScaffoldSelectorStateCopyWith<HomeCommonScaffoldSelectorState>
throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
} }
/// @nodoc /// @nodoc
abstract class $HomeSelectorStateCopyWith<$Res> { abstract class $HomeCommonScaffoldSelectorStateCopyWith<$Res> {
factory $HomeSelectorStateCopyWith( factory $HomeCommonScaffoldSelectorStateCopyWith(
HomeSelectorState value, $Res Function(HomeSelectorState) then) = HomeCommonScaffoldSelectorState value,
_$HomeSelectorStateCopyWithImpl<$Res, HomeSelectorState>; $Res Function(HomeCommonScaffoldSelectorState) then) =
_$HomeCommonScaffoldSelectorStateCopyWithImpl<$Res,
HomeCommonScaffoldSelectorState>;
@useResult @useResult
$Res call( $Res call({String currentLabel, String? locale});
{String currentLabel,
List<NavigationItem> navigationItems,
ViewMode viewMode,
String? locale});
} }
/// @nodoc /// @nodoc
class _$HomeSelectorStateCopyWithImpl<$Res, $Val extends HomeSelectorState> class _$HomeCommonScaffoldSelectorStateCopyWithImpl<$Res,
implements $HomeSelectorStateCopyWith<$Res> { $Val extends HomeCommonScaffoldSelectorState>
_$HomeSelectorStateCopyWithImpl(this._value, this._then); implements $HomeCommonScaffoldSelectorStateCopyWith<$Res> {
_$HomeCommonScaffoldSelectorStateCopyWithImpl(this._value, this._then);
// ignore: unused_field // ignore: unused_field
final $Val _value; final $Val _value;
@@ -1340,8 +1464,6 @@ class _$HomeSelectorStateCopyWithImpl<$Res, $Val extends HomeSelectorState>
@override @override
$Res call({ $Res call({
Object? currentLabel = null, Object? currentLabel = null,
Object? navigationItems = null,
Object? viewMode = null,
Object? locale = freezed, Object? locale = freezed,
}) { }) {
return _then(_value.copyWith( return _then(_value.copyWith(
@@ -1349,14 +1471,6 @@ class _$HomeSelectorStateCopyWithImpl<$Res, $Val extends HomeSelectorState>
? _value.currentLabel ? _value.currentLabel
: currentLabel // ignore: cast_nullable_to_non_nullable : currentLabel // ignore: cast_nullable_to_non_nullable
as String, as String,
navigationItems: null == navigationItems
? _value.navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
locale: freezed == locale locale: freezed == locale
? _value.locale ? _value.locale
: locale // ignore: cast_nullable_to_non_nullable : locale // ignore: cast_nullable_to_non_nullable
@@ -1366,49 +1480,38 @@ class _$HomeSelectorStateCopyWithImpl<$Res, $Val extends HomeSelectorState>
} }
/// @nodoc /// @nodoc
abstract class _$$HomeSelectorStateImplCopyWith<$Res> abstract class _$$HomeCommonScaffoldSelectorStateImplCopyWith<$Res>
implements $HomeSelectorStateCopyWith<$Res> { implements $HomeCommonScaffoldSelectorStateCopyWith<$Res> {
factory _$$HomeSelectorStateImplCopyWith(_$HomeSelectorStateImpl value, factory _$$HomeCommonScaffoldSelectorStateImplCopyWith(
$Res Function(_$HomeSelectorStateImpl) then) = _$HomeCommonScaffoldSelectorStateImpl value,
__$$HomeSelectorStateImplCopyWithImpl<$Res>; $Res Function(_$HomeCommonScaffoldSelectorStateImpl) then) =
__$$HomeCommonScaffoldSelectorStateImplCopyWithImpl<$Res>;
@override @override
@useResult @useResult
$Res call( $Res call({String currentLabel, String? locale});
{String currentLabel,
List<NavigationItem> navigationItems,
ViewMode viewMode,
String? locale});
} }
/// @nodoc /// @nodoc
class __$$HomeSelectorStateImplCopyWithImpl<$Res> class __$$HomeCommonScaffoldSelectorStateImplCopyWithImpl<$Res>
extends _$HomeSelectorStateCopyWithImpl<$Res, _$HomeSelectorStateImpl> extends _$HomeCommonScaffoldSelectorStateCopyWithImpl<$Res,
implements _$$HomeSelectorStateImplCopyWith<$Res> { _$HomeCommonScaffoldSelectorStateImpl>
__$$HomeSelectorStateImplCopyWithImpl(_$HomeSelectorStateImpl _value, implements _$$HomeCommonScaffoldSelectorStateImplCopyWith<$Res> {
$Res Function(_$HomeSelectorStateImpl) _then) __$$HomeCommonScaffoldSelectorStateImplCopyWithImpl(
_$HomeCommonScaffoldSelectorStateImpl _value,
$Res Function(_$HomeCommonScaffoldSelectorStateImpl) _then)
: super(_value, _then); : super(_value, _then);
@pragma('vm:prefer-inline') @pragma('vm:prefer-inline')
@override @override
$Res call({ $Res call({
Object? currentLabel = null, Object? currentLabel = null,
Object? navigationItems = null,
Object? viewMode = null,
Object? locale = freezed, Object? locale = freezed,
}) { }) {
return _then(_$HomeSelectorStateImpl( return _then(_$HomeCommonScaffoldSelectorStateImpl(
currentLabel: null == currentLabel currentLabel: null == currentLabel
? _value.currentLabel ? _value.currentLabel
: currentLabel // ignore: cast_nullable_to_non_nullable : currentLabel // ignore: cast_nullable_to_non_nullable
as String, as String,
navigationItems: null == navigationItems
? _value._navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
locale: freezed == locale locale: freezed == locale
? _value.locale ? _value.locale
: locale // ignore: cast_nullable_to_non_nullable : locale // ignore: cast_nullable_to_non_nullable
@@ -1419,105 +1522,86 @@ class __$$HomeSelectorStateImplCopyWithImpl<$Res>
/// @nodoc /// @nodoc
class _$HomeSelectorStateImpl implements _HomeSelectorState { class _$HomeCommonScaffoldSelectorStateImpl
const _$HomeSelectorStateImpl( implements _HomeCommonScaffoldSelectorState {
{required this.currentLabel, const _$HomeCommonScaffoldSelectorStateImpl(
required final List<NavigationItem> navigationItems, {required this.currentLabel, required this.locale});
required this.viewMode,
required this.locale})
: _navigationItems = navigationItems;
@override @override
final String currentLabel; final String currentLabel;
final List<NavigationItem> _navigationItems;
@override
List<NavigationItem> get navigationItems {
if (_navigationItems is EqualUnmodifiableListView) return _navigationItems;
// ignore: implicit_dynamic_type
return EqualUnmodifiableListView(_navigationItems);
}
@override
final ViewMode viewMode;
@override @override
final String? locale; final String? locale;
@override @override
String toString() { String toString() {
return 'HomeSelectorState(currentLabel: $currentLabel, navigationItems: $navigationItems, viewMode: $viewMode, locale: $locale)'; return 'HomeCommonScaffoldSelectorState(currentLabel: $currentLabel, locale: $locale)';
} }
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
return identical(this, other) || return identical(this, other) ||
(other.runtimeType == runtimeType && (other.runtimeType == runtimeType &&
other is _$HomeSelectorStateImpl && other is _$HomeCommonScaffoldSelectorStateImpl &&
(identical(other.currentLabel, currentLabel) || (identical(other.currentLabel, currentLabel) ||
other.currentLabel == currentLabel) && other.currentLabel == currentLabel) &&
const DeepCollectionEquality()
.equals(other._navigationItems, _navigationItems) &&
(identical(other.viewMode, viewMode) ||
other.viewMode == viewMode) &&
(identical(other.locale, locale) || other.locale == locale)); (identical(other.locale, locale) || other.locale == locale));
} }
@override @override
int get hashCode => Object.hash(runtimeType, currentLabel, int get hashCode => Object.hash(runtimeType, currentLabel, locale);
const DeepCollectionEquality().hash(_navigationItems), viewMode, locale);
@JsonKey(ignore: true) @JsonKey(ignore: true)
@override @override
@pragma('vm:prefer-inline') @pragma('vm:prefer-inline')
_$$HomeSelectorStateImplCopyWith<_$HomeSelectorStateImpl> get copyWith => _$$HomeCommonScaffoldSelectorStateImplCopyWith<
__$$HomeSelectorStateImplCopyWithImpl<_$HomeSelectorStateImpl>( _$HomeCommonScaffoldSelectorStateImpl>
this, _$identity); get copyWith => __$$HomeCommonScaffoldSelectorStateImplCopyWithImpl<
_$HomeCommonScaffoldSelectorStateImpl>(this, _$identity);
} }
abstract class _HomeSelectorState implements HomeSelectorState { abstract class _HomeCommonScaffoldSelectorState
const factory _HomeSelectorState( implements HomeCommonScaffoldSelectorState {
const factory _HomeCommonScaffoldSelectorState(
{required final String currentLabel, {required final String currentLabel,
required final List<NavigationItem> navigationItems, required final String? locale}) = _$HomeCommonScaffoldSelectorStateImpl;
required final ViewMode viewMode,
required final String? locale}) = _$HomeSelectorStateImpl;
@override @override
String get currentLabel; String get currentLabel;
@override @override
List<NavigationItem> get navigationItems;
@override
ViewMode get viewMode;
@override
String? get locale; String? get locale;
@override @override
@JsonKey(ignore: true) @JsonKey(ignore: true)
_$$HomeSelectorStateImplCopyWith<_$HomeSelectorStateImpl> get copyWith => _$$HomeCommonScaffoldSelectorStateImplCopyWith<
throw _privateConstructorUsedError; _$HomeCommonScaffoldSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError;
} }
/// @nodoc /// @nodoc
mixin _$HomeBodySelectorState { mixin _$HomeNavigationSelectorState {
List<NavigationItem> get navigationItems => int get currentIndex => throw _privateConstructorUsedError;
throw _privateConstructorUsedError; String? get locale => throw _privateConstructorUsedError;
@JsonKey(ignore: true) @JsonKey(ignore: true)
$HomeBodySelectorStateCopyWith<HomeBodySelectorState> get copyWith => $HomeNavigationSelectorStateCopyWith<HomeNavigationSelectorState>
throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
} }
/// @nodoc /// @nodoc
abstract class $HomeBodySelectorStateCopyWith<$Res> { abstract class $HomeNavigationSelectorStateCopyWith<$Res> {
factory $HomeBodySelectorStateCopyWith(HomeBodySelectorState value, factory $HomeNavigationSelectorStateCopyWith(
$Res Function(HomeBodySelectorState) then) = HomeNavigationSelectorState value,
_$HomeBodySelectorStateCopyWithImpl<$Res, HomeBodySelectorState>; $Res Function(HomeNavigationSelectorState) then) =
_$HomeNavigationSelectorStateCopyWithImpl<$Res,
HomeNavigationSelectorState>;
@useResult @useResult
$Res call({List<NavigationItem> navigationItems}); $Res call({int currentIndex, String? locale});
} }
/// @nodoc /// @nodoc
class _$HomeBodySelectorStateCopyWithImpl<$Res, class _$HomeNavigationSelectorStateCopyWithImpl<$Res,
$Val extends HomeBodySelectorState> $Val extends HomeNavigationSelectorState>
implements $HomeBodySelectorStateCopyWith<$Res> { implements $HomeNavigationSelectorStateCopyWith<$Res> {
_$HomeBodySelectorStateCopyWithImpl(this._value, this._then); _$HomeNavigationSelectorStateCopyWithImpl(this._value, this._then);
// ignore: unused_field // ignore: unused_field
final $Val _value; final $Val _value;
@@ -1527,103 +1611,114 @@ class _$HomeBodySelectorStateCopyWithImpl<$Res,
@pragma('vm:prefer-inline') @pragma('vm:prefer-inline')
@override @override
$Res call({ $Res call({
Object? navigationItems = null, Object? currentIndex = null,
Object? locale = freezed,
}) { }) {
return _then(_value.copyWith( return _then(_value.copyWith(
navigationItems: null == navigationItems currentIndex: null == currentIndex
? _value.navigationItems ? _value.currentIndex
: navigationItems // ignore: cast_nullable_to_non_nullable : currentIndex // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>, as int,
locale: freezed == locale
? _value.locale
: locale // ignore: cast_nullable_to_non_nullable
as String?,
) as $Val); ) as $Val);
} }
} }
/// @nodoc /// @nodoc
abstract class _$$HomeBodySelectorStateImplCopyWith<$Res> abstract class _$$HomeNavigationSelectorStateImplCopyWith<$Res>
implements $HomeBodySelectorStateCopyWith<$Res> { implements $HomeNavigationSelectorStateCopyWith<$Res> {
factory _$$HomeBodySelectorStateImplCopyWith( factory _$$HomeNavigationSelectorStateImplCopyWith(
_$HomeBodySelectorStateImpl value, _$HomeNavigationSelectorStateImpl value,
$Res Function(_$HomeBodySelectorStateImpl) then) = $Res Function(_$HomeNavigationSelectorStateImpl) then) =
__$$HomeBodySelectorStateImplCopyWithImpl<$Res>; __$$HomeNavigationSelectorStateImplCopyWithImpl<$Res>;
@override @override
@useResult @useResult
$Res call({List<NavigationItem> navigationItems}); $Res call({int currentIndex, String? locale});
} }
/// @nodoc /// @nodoc
class __$$HomeBodySelectorStateImplCopyWithImpl<$Res> class __$$HomeNavigationSelectorStateImplCopyWithImpl<$Res>
extends _$HomeBodySelectorStateCopyWithImpl<$Res, extends _$HomeNavigationSelectorStateCopyWithImpl<$Res,
_$HomeBodySelectorStateImpl> _$HomeNavigationSelectorStateImpl>
implements _$$HomeBodySelectorStateImplCopyWith<$Res> { implements _$$HomeNavigationSelectorStateImplCopyWith<$Res> {
__$$HomeBodySelectorStateImplCopyWithImpl(_$HomeBodySelectorStateImpl _value, __$$HomeNavigationSelectorStateImplCopyWithImpl(
$Res Function(_$HomeBodySelectorStateImpl) _then) _$HomeNavigationSelectorStateImpl _value,
$Res Function(_$HomeNavigationSelectorStateImpl) _then)
: super(_value, _then); : super(_value, _then);
@pragma('vm:prefer-inline') @pragma('vm:prefer-inline')
@override @override
$Res call({ $Res call({
Object? navigationItems = null, Object? currentIndex = null,
Object? locale = freezed,
}) { }) {
return _then(_$HomeBodySelectorStateImpl( return _then(_$HomeNavigationSelectorStateImpl(
navigationItems: null == navigationItems currentIndex: null == currentIndex
? _value._navigationItems ? _value.currentIndex
: navigationItems // ignore: cast_nullable_to_non_nullable : currentIndex // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>, as int,
locale: freezed == locale
? _value.locale
: locale // ignore: cast_nullable_to_non_nullable
as String?,
)); ));
} }
} }
/// @nodoc /// @nodoc
class _$HomeBodySelectorStateImpl implements _HomeBodySelectorState { class _$HomeNavigationSelectorStateImpl
const _$HomeBodySelectorStateImpl( implements _HomeNavigationSelectorState {
{required final List<NavigationItem> navigationItems}) const _$HomeNavigationSelectorStateImpl(
: _navigationItems = navigationItems; {required this.currentIndex, required this.locale});
final List<NavigationItem> _navigationItems;
@override @override
List<NavigationItem> get navigationItems { final int currentIndex;
if (_navigationItems is EqualUnmodifiableListView) return _navigationItems; @override
// ignore: implicit_dynamic_type final String? locale;
return EqualUnmodifiableListView(_navigationItems);
}
@override @override
String toString() { String toString() {
return 'HomeBodySelectorState(navigationItems: $navigationItems)'; return 'HomeNavigationSelectorState(currentIndex: $currentIndex, locale: $locale)';
} }
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
return identical(this, other) || return identical(this, other) ||
(other.runtimeType == runtimeType && (other.runtimeType == runtimeType &&
other is _$HomeBodySelectorStateImpl && other is _$HomeNavigationSelectorStateImpl &&
const DeepCollectionEquality() (identical(other.currentIndex, currentIndex) ||
.equals(other._navigationItems, _navigationItems)); other.currentIndex == currentIndex) &&
(identical(other.locale, locale) || other.locale == locale));
} }
@override @override
int get hashCode => Object.hash( int get hashCode => Object.hash(runtimeType, currentIndex, locale);
runtimeType, const DeepCollectionEquality().hash(_navigationItems));
@JsonKey(ignore: true) @JsonKey(ignore: true)
@override @override
@pragma('vm:prefer-inline') @pragma('vm:prefer-inline')
_$$HomeBodySelectorStateImplCopyWith<_$HomeBodySelectorStateImpl> _$$HomeNavigationSelectorStateImplCopyWith<_$HomeNavigationSelectorStateImpl>
get copyWith => __$$HomeBodySelectorStateImplCopyWithImpl< get copyWith => __$$HomeNavigationSelectorStateImplCopyWithImpl<
_$HomeBodySelectorStateImpl>(this, _$identity); _$HomeNavigationSelectorStateImpl>(this, _$identity);
} }
abstract class _HomeBodySelectorState implements HomeBodySelectorState { abstract class _HomeNavigationSelectorState
const factory _HomeBodySelectorState( implements HomeNavigationSelectorState {
{required final List<NavigationItem> navigationItems}) = const factory _HomeNavigationSelectorState(
_$HomeBodySelectorStateImpl; {required final int currentIndex,
required final String? locale}) = _$HomeNavigationSelectorStateImpl;
@override @override
List<NavigationItem> get navigationItems; int get currentIndex;
@override
String? get locale;
@override @override
@JsonKey(ignore: true) @JsonKey(ignore: true)
_$$HomeBodySelectorStateImplCopyWith<_$HomeBodySelectorStateImpl> _$$HomeNavigationSelectorStateImplCopyWith<_$HomeNavigationSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
} }
@@ -1885,7 +1980,6 @@ mixin _$ProxiesTabViewSelectorState {
ProxiesSortType get proxiesSortType => throw _privateConstructorUsedError; ProxiesSortType get proxiesSortType => throw _privateConstructorUsedError;
num get sortNum => throw _privateConstructorUsedError; num get sortNum => throw _privateConstructorUsedError;
Group get group => throw _privateConstructorUsedError; Group get group => throw _privateConstructorUsedError;
ViewMode get viewMode => throw _privateConstructorUsedError;
@JsonKey(ignore: true) @JsonKey(ignore: true)
$ProxiesTabViewSelectorStateCopyWith<ProxiesTabViewSelectorState> $ProxiesTabViewSelectorStateCopyWith<ProxiesTabViewSelectorState>
@@ -1900,11 +1994,7 @@ abstract class $ProxiesTabViewSelectorStateCopyWith<$Res> {
_$ProxiesTabViewSelectorStateCopyWithImpl<$Res, _$ProxiesTabViewSelectorStateCopyWithImpl<$Res,
ProxiesTabViewSelectorState>; ProxiesTabViewSelectorState>;
@useResult @useResult
$Res call( $Res call({ProxiesSortType proxiesSortType, num sortNum, Group group});
{ProxiesSortType proxiesSortType,
num sortNum,
Group group,
ViewMode viewMode});
$GroupCopyWith<$Res> get group; $GroupCopyWith<$Res> get group;
} }
@@ -1926,7 +2016,6 @@ class _$ProxiesTabViewSelectorStateCopyWithImpl<$Res,
Object? proxiesSortType = null, Object? proxiesSortType = null,
Object? sortNum = null, Object? sortNum = null,
Object? group = null, Object? group = null,
Object? viewMode = null,
}) { }) {
return _then(_value.copyWith( return _then(_value.copyWith(
proxiesSortType: null == proxiesSortType proxiesSortType: null == proxiesSortType
@@ -1941,10 +2030,6 @@ class _$ProxiesTabViewSelectorStateCopyWithImpl<$Res,
? _value.group ? _value.group
: group // ignore: cast_nullable_to_non_nullable : group // ignore: cast_nullable_to_non_nullable
as Group, as Group,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
) as $Val); ) as $Val);
} }
@@ -1966,11 +2051,7 @@ abstract class _$$ProxiesTabViewSelectorStateImplCopyWith<$Res>
__$$ProxiesTabViewSelectorStateImplCopyWithImpl<$Res>; __$$ProxiesTabViewSelectorStateImplCopyWithImpl<$Res>;
@override @override
@useResult @useResult
$Res call( $Res call({ProxiesSortType proxiesSortType, num sortNum, Group group});
{ProxiesSortType proxiesSortType,
num sortNum,
Group group,
ViewMode viewMode});
@override @override
$GroupCopyWith<$Res> get group; $GroupCopyWith<$Res> get group;
@@ -1992,7 +2073,6 @@ class __$$ProxiesTabViewSelectorStateImplCopyWithImpl<$Res>
Object? proxiesSortType = null, Object? proxiesSortType = null,
Object? sortNum = null, Object? sortNum = null,
Object? group = null, Object? group = null,
Object? viewMode = null,
}) { }) {
return _then(_$ProxiesTabViewSelectorStateImpl( return _then(_$ProxiesTabViewSelectorStateImpl(
proxiesSortType: null == proxiesSortType proxiesSortType: null == proxiesSortType
@@ -2007,10 +2087,6 @@ class __$$ProxiesTabViewSelectorStateImplCopyWithImpl<$Res>
? _value.group ? _value.group
: group // ignore: cast_nullable_to_non_nullable : group // ignore: cast_nullable_to_non_nullable
as Group, as Group,
viewMode: null == viewMode
? _value.viewMode
: viewMode // ignore: cast_nullable_to_non_nullable
as ViewMode,
)); ));
} }
} }
@@ -2022,8 +2098,7 @@ class _$ProxiesTabViewSelectorStateImpl
const _$ProxiesTabViewSelectorStateImpl( const _$ProxiesTabViewSelectorStateImpl(
{required this.proxiesSortType, {required this.proxiesSortType,
required this.sortNum, required this.sortNum,
required this.group, required this.group});
required this.viewMode});
@override @override
final ProxiesSortType proxiesSortType; final ProxiesSortType proxiesSortType;
@@ -2031,12 +2106,10 @@ class _$ProxiesTabViewSelectorStateImpl
final num sortNum; final num sortNum;
@override @override
final Group group; final Group group;
@override
final ViewMode viewMode;
@override @override
String toString() { String toString() {
return 'ProxiesTabViewSelectorState(proxiesSortType: $proxiesSortType, sortNum: $sortNum, group: $group, viewMode: $viewMode)'; return 'ProxiesTabViewSelectorState(proxiesSortType: $proxiesSortType, sortNum: $sortNum, group: $group)';
} }
@override @override
@@ -2047,14 +2120,11 @@ class _$ProxiesTabViewSelectorStateImpl
(identical(other.proxiesSortType, proxiesSortType) || (identical(other.proxiesSortType, proxiesSortType) ||
other.proxiesSortType == proxiesSortType) && other.proxiesSortType == proxiesSortType) &&
(identical(other.sortNum, sortNum) || other.sortNum == sortNum) && (identical(other.sortNum, sortNum) || other.sortNum == sortNum) &&
(identical(other.group, group) || other.group == group) && (identical(other.group, group) || other.group == group));
(identical(other.viewMode, viewMode) ||
other.viewMode == viewMode));
} }
@override @override
int get hashCode => int get hashCode => Object.hash(runtimeType, proxiesSortType, sortNum, group);
Object.hash(runtimeType, proxiesSortType, sortNum, group, viewMode);
@JsonKey(ignore: true) @JsonKey(ignore: true)
@override @override
@@ -2069,8 +2139,7 @@ abstract class _ProxiesTabViewSelectorState
const factory _ProxiesTabViewSelectorState( const factory _ProxiesTabViewSelectorState(
{required final ProxiesSortType proxiesSortType, {required final ProxiesSortType proxiesSortType,
required final num sortNum, required final num sortNum,
required final Group group, required final Group group}) = _$ProxiesTabViewSelectorStateImpl;
required final ViewMode viewMode}) = _$ProxiesTabViewSelectorStateImpl;
@override @override
ProxiesSortType get proxiesSortType; ProxiesSortType get proxiesSortType;
@@ -2079,143 +2148,7 @@ abstract class _ProxiesTabViewSelectorState
@override @override
Group get group; Group get group;
@override @override
ViewMode get viewMode;
@override
@JsonKey(ignore: true) @JsonKey(ignore: true)
_$$ProxiesTabViewSelectorStateImplCopyWith<_$ProxiesTabViewSelectorStateImpl> _$$ProxiesTabViewSelectorStateImplCopyWith<_$ProxiesTabViewSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError; get copyWith => throw _privateConstructorUsedError;
} }
/// @nodoc
mixin _$MoreToolsSelectorState {
List<NavigationItem> get navigationItems =>
throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$MoreToolsSelectorStateCopyWith<MoreToolsSelectorState> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $MoreToolsSelectorStateCopyWith<$Res> {
factory $MoreToolsSelectorStateCopyWith(MoreToolsSelectorState value,
$Res Function(MoreToolsSelectorState) then) =
_$MoreToolsSelectorStateCopyWithImpl<$Res, MoreToolsSelectorState>;
@useResult
$Res call({List<NavigationItem> navigationItems});
}
/// @nodoc
class _$MoreToolsSelectorStateCopyWithImpl<$Res,
$Val extends MoreToolsSelectorState>
implements $MoreToolsSelectorStateCopyWith<$Res> {
_$MoreToolsSelectorStateCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
@pragma('vm:prefer-inline')
@override
$Res call({
Object? navigationItems = null,
}) {
return _then(_value.copyWith(
navigationItems: null == navigationItems
? _value.navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
) as $Val);
}
}
/// @nodoc
abstract class _$$MoreToolsSelectorStateImplCopyWith<$Res>
implements $MoreToolsSelectorStateCopyWith<$Res> {
factory _$$MoreToolsSelectorStateImplCopyWith(
_$MoreToolsSelectorStateImpl value,
$Res Function(_$MoreToolsSelectorStateImpl) then) =
__$$MoreToolsSelectorStateImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({List<NavigationItem> navigationItems});
}
/// @nodoc
class __$$MoreToolsSelectorStateImplCopyWithImpl<$Res>
extends _$MoreToolsSelectorStateCopyWithImpl<$Res,
_$MoreToolsSelectorStateImpl>
implements _$$MoreToolsSelectorStateImplCopyWith<$Res> {
__$$MoreToolsSelectorStateImplCopyWithImpl(
_$MoreToolsSelectorStateImpl _value,
$Res Function(_$MoreToolsSelectorStateImpl) _then)
: super(_value, _then);
@pragma('vm:prefer-inline')
@override
$Res call({
Object? navigationItems = null,
}) {
return _then(_$MoreToolsSelectorStateImpl(
navigationItems: null == navigationItems
? _value._navigationItems
: navigationItems // ignore: cast_nullable_to_non_nullable
as List<NavigationItem>,
));
}
}
/// @nodoc
class _$MoreToolsSelectorStateImpl implements _MoreToolsSelectorState {
const _$MoreToolsSelectorStateImpl(
{required final List<NavigationItem> navigationItems})
: _navigationItems = navigationItems;
final List<NavigationItem> _navigationItems;
@override
List<NavigationItem> get navigationItems {
if (_navigationItems is EqualUnmodifiableListView) return _navigationItems;
// ignore: implicit_dynamic_type
return EqualUnmodifiableListView(_navigationItems);
}
@override
String toString() {
return 'MoreToolsSelectorState(navigationItems: $navigationItems)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$MoreToolsSelectorStateImpl &&
const DeepCollectionEquality()
.equals(other._navigationItems, _navigationItems));
}
@override
int get hashCode => Object.hash(
runtimeType, const DeepCollectionEquality().hash(_navigationItems));
@JsonKey(ignore: true)
@override
@pragma('vm:prefer-inline')
_$$MoreToolsSelectorStateImplCopyWith<_$MoreToolsSelectorStateImpl>
get copyWith => __$$MoreToolsSelectorStateImplCopyWithImpl<
_$MoreToolsSelectorStateImpl>(this, _$identity);
}
abstract class _MoreToolsSelectorState implements MoreToolsSelectorState {
const factory _MoreToolsSelectorState(
{required final List<NavigationItem> navigationItems}) =
_$MoreToolsSelectorStateImpl;
@override
List<NavigationItem> get navigationItems;
@override
@JsonKey(ignore: true)
_$$MoreToolsSelectorStateImplCopyWith<_$MoreToolsSelectorStateImpl>
get copyWith => throw _privateConstructorUsedError;
}

View File

@@ -12,5 +12,4 @@ export 'package.dart';
export 'common.dart'; export 'common.dart';
export 'ffi.dart'; export 'ffi.dart';
export 'selector.dart'; export 'selector.dart';
export 'navigation.dart'; export 'navigation.dart';
export 'dav.dart';

View File

@@ -84,40 +84,42 @@ class Profile {
this.autoUpdate = true, this.autoUpdate = true,
}) : id = id ?? DateTime.now().millisecondsSinceEpoch.toString(), }) : id = id ?? DateTime.now().millisecondsSinceEpoch.toString(),
autoUpdateDuration = autoUpdateDuration =
autoUpdateDuration ?? defaultUpdateDuration, autoUpdateDuration ?? appConstant.defaultUpdateDuration,
selectedMap = selectedMap ?? {}; selectedMap = selectedMap ?? {};
ProfileType get type => url == null ? ProfileType.file : ProfileType.url; ProfileType get type => url == null ? ProfileType.file : ProfileType.url;
Future<Result<bool>> checkAndUpdate() async {
final isExists = await check();
if(!isExists){
if(url != null){
return await update();
}
return Result.error();
}
return Result.success();
}
Future<Result<bool>> update() async { Future<Result<bool>> update() async {
if (url == null) { if (url == null) {
return Result.error( return Result.error(
appLocalizations.unableToUpdateCurrentProfileDesc, message: appLocalizations.unableToUpdateCurrentProfileDesc,
); );
} }
final responseResult = await Request.getFileResponseForUrl(url!); final responseResult = await Request.getFileResponseForUrl(url!);
final response = responseResult.data; final response = responseResult.data;
if (responseResult.type != ResultType.success || response == null) { if (responseResult.type != ResultType.success || response == null) {
return Result.error(responseResult.message); return Result.error(message: responseResult.message);
} }
final disposition = response.headers['content-disposition']; final disposition = response.headers['content-disposition'];
label ??= other.getFileNameForDisposition(disposition) ?? id; if (disposition != null && label == null) {
final parseValue = HeaderValue.parse(disposition);
parseValue.parameters.forEach(
(key, value) {
if (key.startsWith("filename")) {
if (key == "filename*") {
label = Uri.decodeComponent((value ?? "").split("'").last);
} else {
label = value ?? id;
}
}
},
);
}
final userinfo = response.headers['subscription-userinfo']; final userinfo = response.headers['subscription-userinfo'];
userInfo = UserInfo.formHString(userinfo); userInfo = UserInfo.formHString(userinfo);
final saveResult = await saveFile(response.bodyBytes); final saveResult = await saveFile(response.bodyBytes);
if (saveResult.type == ResultType.error) { if (saveResult.type == ResultType.error) {
return Result.error(saveResult.message); return Result.error(message: saveResult.message);
} }
lastUpdateDate = DateTime.now(); lastUpdateDate = DateTime.now();
return Result.success(); return Result.success();
@@ -131,7 +133,7 @@ class Profile {
Future<Result<void>> saveFile(Uint8List bytes) async { Future<Result<void>> saveFile(Uint8List bytes) async {
final isValidate = clashCore.validateConfig(utf8.decode(bytes)); final isValidate = clashCore.validateConfig(utf8.decode(bytes));
if (!isValidate) { if (!isValidate) {
return Result.error(appLocalizations.profileParseErrorDesc); return Result.error(message: appLocalizations.profileParseErrorDesc);
} }
final path = await appPath.getProfilePath(id); final path = await appPath.getProfilePath(id);
final file = File(path!); final file = File(path!);

View File

@@ -40,7 +40,6 @@ class ProfilesSelectorState with _$ProfilesSelectorState {
const factory ProfilesSelectorState({ const factory ProfilesSelectorState({
required List<Profile> profiles, required List<Profile> profiles,
required String? currentProfileId, required String? currentProfileId,
required ViewMode viewMode,
}) = _ProfilesSelectorState; }) = _ProfilesSelectorState;
} }
@@ -61,6 +60,14 @@ class ApplicationSelectorState with _$ApplicationSelectorState {
}) = _ApplicationSelectorState; }) = _ApplicationSelectorState;
} }
@freezed
class HomeLayoutSelectorState with _$HomeLayoutSelectorState{
const factory HomeLayoutSelectorState({
required List<NavigationItem> navigationItems,
required int currentIndex,
})=_HomeLayoutSelectorState;
}
@freezed @freezed
class TrayContainerSelectorState with _$TrayContainerSelectorState{ class TrayContainerSelectorState with _$TrayContainerSelectorState{
const factory TrayContainerSelectorState({ const factory TrayContainerSelectorState({
@@ -79,22 +86,20 @@ class UpdateNavigationsSelector with _$UpdateNavigationsSelector{
}) = _UpdateNavigationsSelector; }) = _UpdateNavigationsSelector;
} }
@freezed @freezed
class HomeSelectorState with _$HomeSelectorState { class HomeCommonScaffoldSelectorState with _$HomeCommonScaffoldSelectorState {
const factory HomeSelectorState({ const factory HomeCommonScaffoldSelectorState({
required String currentLabel, required String currentLabel,
required List<NavigationItem> navigationItems,
required ViewMode viewMode,
required String? locale, required String? locale,
}) = _HomeSelectorState; }) = _HomeCommonScaffoldSelectorState;
} }
@freezed @freezed
class HomeBodySelectorState with _$HomeBodySelectorState { class HomeNavigationSelectorState with _$HomeNavigationSelectorState{
const factory HomeBodySelectorState({ const factory HomeNavigationSelectorState({
required List<NavigationItem> navigationItems, required int currentIndex,
}) = _HomeBodySelectorState; required String? locale,
}) = _HomeNavigationSelectorState;
} }
@freezed @freezed
@@ -117,13 +122,5 @@ class ProxiesTabViewSelectorState with _$ProxiesTabViewSelectorState{
required ProxiesSortType proxiesSortType, required ProxiesSortType proxiesSortType,
required num sortNum, required num sortNum,
required Group group, required Group group,
required ViewMode viewMode,
}) = _ProxiesTabViewSelectorState; }) = _ProxiesTabViewSelectorState;
} }
@freezed
class MoreToolsSelectorState with _$MoreToolsSelectorState {
const factory MoreToolsSelectorState({
required List<NavigationItem> navigationItems,
}) = _MoreToolsSelectorState;
}

View File

@@ -6,10 +6,10 @@ class SystemColorSchemes {
ColorScheme? lightColorScheme, ColorScheme? lightColorScheme,
ColorScheme? darkColorScheme, ColorScheme? darkColorScheme,
}) : lightColorScheme = lightColorScheme ?? }) : lightColorScheme = lightColorScheme ??
ColorScheme.fromSeed(seedColor: defaultPrimaryColor), ColorScheme.fromSeed(seedColor: appConstant.defaultPrimaryColor),
darkColorScheme = darkColorScheme ?? darkColorScheme = darkColorScheme ??
ColorScheme.fromSeed( ColorScheme.fromSeed(
seedColor: defaultPrimaryColor, seedColor: appConstant.defaultPrimaryColor,
brightness: Brightness.dark, brightness: Brightness.dark,
); );
ColorScheme lightColorScheme; ColorScheme lightColorScheme;

View File

@@ -1,6 +1,7 @@
import 'package:fl_clash/models/models.dart'; import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/state.dart'; import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_adaptive_scaffold/flutter_adaptive_scaffold.dart';
import 'package:intl/intl.dart'; import 'package:intl/intl.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -12,133 +13,28 @@ typedef OnSelected = void Function(int index);
class HomePage extends StatelessWidget { class HomePage extends StatelessWidget {
const HomePage({super.key}); const HomePage({super.key});
_getNavigationBar({ Widget _buildBody({
required ViewMode viewMode,
required List<NavigationItem> navigationItems, required List<NavigationItem> navigationItems,
required int currentIndex,
}) { }) {
if (viewMode == ViewMode.mobile) { globalState.currentNavigationItems = navigationItems;
return NavigationBar( return Selector<AppState, int>(
destinations: navigationItems selector: (_, appState) {
.map( final index = navigationItems.lastIndexWhere(
(e) => NavigationDestination( (element) => element.label == appState.currentLabel,
icon: e.icon, );
label: Intl.message(e.label), return index == -1 ? 0 : index;
), },
) builder: (context, currentIndex, __) {
.toList(), if (globalState.pageController != null) {
onDestinationSelected: globalState.appController.toPage, WidgetsBinding.instance.addPostFrameCallback((_) {
selectedIndex: currentIndex, globalState.appController.toPage(currentIndex, hasAnimate: true);
); });
} } else {
final extended = viewMode == ViewMode.desktop; globalState.pageController = PageController(
return NavigationRail( initialPage: currentIndex,
destinations: navigationItems keepPage: true,
.map(
(e) => NavigationRailDestination(
icon: e.icon,
label: Text(
Intl.message(e.label),
),
),
)
.toList(),
onDestinationSelected: globalState.appController.toPage,
extended: extended,
minExtendedWidth: 172,
selectedIndex: currentIndex,
labelType: extended
? NavigationRailLabelType.none
: NavigationRailLabelType.selected,
);
}
@override
Widget build(BuildContext context) {
return PopContainer(
child: Selector2<AppState, Config, HomeSelectorState>(
selector: (_, appState, config) => HomeSelectorState(
currentLabel: appState.currentLabel,
navigationItems: appState.currentNavigationItems,
viewMode: appState.viewMode,
locale: config.locale,
),
builder: (_, state, child) {
final viewMode = state.viewMode;
final navigationItems = state.navigationItems;
final currentLabel = state.currentLabel;
final index = navigationItems.lastIndexWhere(
(element) => element.label == currentLabel,
); );
final currentIndex = index == -1 ? 0 : index; }
final navigationBar = _getNavigationBar(
viewMode: viewMode,
navigationItems: navigationItems,
currentIndex: currentIndex,
);
final bottomNavigationBar =
viewMode == ViewMode.mobile ? navigationBar : null;
Widget body;
if (viewMode != ViewMode.mobile) {
body = Row(
children: [
navigationBar,
Expanded(
flex: 1,
child: child!,
)
],
);
} else {
body = child!;
}
return CommonScaffold(
key: globalState.homeScaffoldKey,
title: Intl.message(
currentLabel,
),
body: body,
bottomNavigationBar: bottomNavigationBar,
);
},
child: const HomeBody(
key: Key("home_boy"),
),
),
);
}
}
class HomeBody extends StatelessWidget {
const HomeBody({super.key});
_updatePageIndex(List<NavigationItem> navigationItems) {
final currentLabel = globalState.appController.appState.currentLabel;
final index = navigationItems.lastIndexWhere(
(element) => element.label == currentLabel,
);
final currentIndex = index == -1 ? 0 : index;
if (globalState.pageController != null) {
WidgetsBinding.instance.addPostFrameCallback((_) {
globalState.appController.toPage(currentIndex);
});
} else {
globalState.pageController = PageController(
initialPage: currentIndex,
keepPage: true,
);
}
}
@override
Widget build(BuildContext context) {
return Selector<AppState, HomeBodySelectorState>(
selector: (_, appState) => HomeBodySelectorState(
navigationItems: appState.currentNavigationItems,
),
builder: (_, state, __) {
final navigationItems = state.navigationItems;
_updatePageIndex(navigationItems);
return PageView.builder( return PageView.builder(
controller: globalState.pageController, controller: globalState.pageController,
physics: const NeverScrollableScrollPhysics(), physics: const NeverScrollableScrollPhysics(),
@@ -146,7 +42,6 @@ class HomeBody extends StatelessWidget {
itemBuilder: (_, index) { itemBuilder: (_, index) {
final navigationItem = navigationItems[index]; final navigationItem = navigationItems[index];
return KeepContainer( return KeepContainer(
key: Key(navigationItem.label),
child: navigationItem.fragment, child: navigationItem.fragment,
); );
}, },
@@ -154,4 +49,157 @@ class HomeBody extends StatelessWidget {
}, },
); );
} }
_buildNavigationRail({
required List<NavigationItem> navigationItems,
bool extended = false,
}) {
return Selector2<AppState, Config, HomeNavigationSelectorState>(
selector: (_, appState, config) {
final index = navigationItems.lastIndexWhere(
(element) => element.label == appState.currentLabel,
);
return HomeNavigationSelectorState(
currentIndex: index == -1 ? 0 : index,
locale: config.locale,
);
},
builder: (context, state, __) {
return AdaptiveScaffold.standardNavigationRail(
onDestinationSelected: globalState.appController.toPage,
destinations: navigationItems
.map(
(e) => NavigationRailDestination(
icon: e.icon,
label: Text(
Intl.message(e.label),
),
),
)
.toList(),
extended: extended,
width: extended ? 160 : 80,
selectedIndex: state.currentIndex,
labelType: extended
? NavigationRailLabelType.none
: NavigationRailLabelType.selected,
);
},
);
}
_buildBottomNavigationBar({
required List<NavigationItem> navigationItems,
}) {
return Selector2<AppState, Config, HomeNavigationSelectorState>(
selector: (_, appState, config) {
final index = navigationItems.lastIndexWhere(
(element) => element.label == appState.currentLabel,
);
return HomeNavigationSelectorState(
currentIndex: index == -1 ? 0 : index,
locale: config.locale,
);
},
builder: (context, state, __) {
final mobileDestinations = navigationItems
.map(
(e) => NavigationDestination(
icon: e.icon,
label: Intl.message(e.label),
),
)
.toList();
return AdaptiveScaffold.standardBottomNavigationBar(
destinations: mobileDestinations,
onDestinationSelected: globalState.appController.toPage,
currentIndex: state.currentIndex,
);
},
);
}
@override
Widget build(BuildContext context) {
return PopContainer(
child: Selector2<AppState, Config, HomeCommonScaffoldSelectorState>(
selector: (_, appState, config) => HomeCommonScaffoldSelectorState(
currentLabel: appState.currentLabel,
locale: config.locale,
),
builder: (_, state, child) {
return CommonScaffold(
key: globalState.homeScaffoldKey,
title: Text(
Intl.message(state.currentLabel),
),
body: child!,
);
},
child: Selector<AppState, List<NavigationItem>>(
selector: (_, appState) => appState.navigationItems,
builder: (_, navigationItems, __) {
final desktopNavigationItems = navigationItems
.where(
(element) =>
element.modes.contains(NavigationItemMode.desktop),
)
.toList();
final mobileNavigationItems = navigationItems
.where(
(element) =>
element.modes.contains(NavigationItemMode.mobile),
)
.toList();
return AdaptiveLayout(
transitionDuration: kThemeAnimationDuration,
primaryNavigation: SlotLayout(
config: {
Breakpoints.medium: SlotLayout.from(
key: const Key('primary_navigation_medium'),
builder: (_) => _buildNavigationRail(
navigationItems: desktopNavigationItems,
),
),
Breakpoints.large: SlotLayout.from(
key: const Key('primary_navigation_large'),
builder: (_) => _buildNavigationRail(
navigationItems: desktopNavigationItems,
extended: true,
),
),
},
),
body: SlotLayout(
config: {
Breakpoints.mediumAndUp: SlotLayout.from(
key: const Key('body_mediumAndUp'),
builder: (_) => _buildBody(
navigationItems: desktopNavigationItems,
),
),
Breakpoints.small: SlotLayout.from(
key: const Key('body_small'),
builder: (_) => _buildBody(
navigationItems: mobileNavigationItems,
),
)
},
),
bottomNavigation: SlotLayout(
config: <Breakpoint, SlotLayoutConfig>{
Breakpoints.small: SlotLayout.from(
key: const Key('bottom_navigation_small'),
builder: (_) => _buildBottomNavigationBar(
navigationItems: mobileNavigationItems,
),
)
},
),
);
},
),
),
);
}
} }

View File

@@ -83,8 +83,8 @@ class _ScanPageState extends State<ScanPage> with WidgetsBindingObserver {
automaticallyImplyLeading: false, automaticallyImplyLeading: false,
leading: IconButton( leading: IconButton(
style: const ButtonStyle( style: const ButtonStyle(
iconSize: WidgetStatePropertyAll(32), iconSize: MaterialStatePropertyAll(32),
foregroundColor: WidgetStatePropertyAll(Colors.white), foregroundColor: MaterialStatePropertyAll(Colors.white),
), ),
onPressed: () { onPressed: () {
Navigator.of(context).pop(); Navigator.of(context).pop();
@@ -92,54 +92,44 @@ class _ScanPageState extends State<ScanPage> with WidgetsBindingObserver {
icon: const Icon(Icons.close), icon: const Icon(Icons.close),
), ),
actions: [ actions: [
ValueListenableBuilder<MobileScannerState>( IconButton(
valueListenable: controller, onPressed: globalState.appController.addProfileFormQrCode,
builder: (context, state, _) { icon: const Icon(Icons.add_photo_alternate_outlined),
var icon = const Icon(Icons.flash_off);
var backgroundColor = Colors.black12;
switch (state.torchState) {
case TorchState.off:
icon = const Icon(Icons.flash_off);
backgroundColor = Colors.black12;
case TorchState.on:
icon = const Icon(Icons.flash_on);
backgroundColor = Colors.orange;
case TorchState.unavailable:
icon = const Icon(Icons.flash_off);
backgroundColor = Colors.transparent;
}
return Container(
margin: const EdgeInsets.symmetric(horizontal: 8),
child: AbsorbPointer(
absorbing: state.torchState == TorchState.unavailable,
child: IconButton(
color: Colors.white,
icon: icon,
style: ButtonStyle(
foregroundColor: const WidgetStatePropertyAll(Colors.white),
backgroundColor: WidgetStatePropertyAll(backgroundColor),
),
onPressed: () => controller.toggleTorch(),
),
),
);
},
) )
], ],
), ),
Container( Container(
margin: const EdgeInsets.only(bottom: 32), margin: const EdgeInsets.only(bottom: 32),
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
child: IconButton( child: ValueListenableBuilder<MobileScannerState>(
color: Colors.white, valueListenable: controller,
style: const ButtonStyle( builder: (context, state, _) {
foregroundColor: WidgetStatePropertyAll(Colors.white), var icon = const Icon(Icons.flash_off);
backgroundColor: WidgetStatePropertyAll(Colors.grey), var backgroundColor = Colors.black12;
), switch (state.torchState) {
padding: const EdgeInsets.all(16), case TorchState.off:
iconSize: 32.0, icon = const Icon(Icons.flash_off);
onPressed: globalState.appController.addProfileFormQrCode, backgroundColor = Colors.black12;
icon: const Icon(Icons.photo_camera_back), case TorchState.on:
icon = const Icon(Icons.flash_on);
backgroundColor = Colors.orange;
case TorchState.unavailable:
icon = const Icon(Icons.no_flash);
backgroundColor = Colors.grey;
}
return IconButton(
color: Colors.white,
icon: icon,
style: ButtonStyle(
foregroundColor:
const MaterialStatePropertyAll(Colors.white),
backgroundColor: MaterialStatePropertyAll(backgroundColor),
),
padding: const EdgeInsets.all(16),
iconSize: 32.0,
onPressed: () => controller.toggleTorch(),
);
},
), ),
), ),
], ],

View File

@@ -1,7 +1,6 @@
import 'dart:async'; import 'dart:async';
import 'dart:convert'; import 'dart:convert';
import 'dart:io'; import 'dart:io';
import 'dart:isolate';
import 'package:fl_clash/models/models.dart'; import 'package:fl_clash/models/models.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@@ -45,11 +44,9 @@ class App {
Future<List<Package>> getPackages() async { Future<List<Package>> getPackages() async {
final packagesString = final packagesString =
await methodChannel?.invokeMethod<String>("getPackages"); await methodChannel?.invokeMethod<String>("getPackages");
return Isolate.run<List<Package>>(() { final List<dynamic> packagesRaw =
final List<dynamic> packagesRaw = packagesString != null ? json.decode(packagesString) : [];
packagesString != null ? json.decode(packagesString) : []; return packagesRaw.map((e) => Package.fromJson(e)).toList();
return packagesRaw.map((e) => Package.fromJson(e)).toList();
});
} }
Future<ImageProvider?> getPackageIcon(String packageName) async { Future<ImageProvider?> getPackageIcon(String packageName) async {

View File

@@ -4,6 +4,8 @@ import 'dart:io';
import 'package:animations/animations.dart'; import 'package:animations/animations.dart';
import 'package:fl_clash/clash/clash.dart'; import 'package:fl_clash/clash/clash.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/plugins/app.dart';
import 'package:fl_clash/widgets/scaffold.dart'; import 'package:fl_clash/widgets/scaffold.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@@ -22,6 +24,8 @@ class GlobalState {
late AppController appController; late AppController appController;
GlobalKey<CommonScaffoldState> homeScaffoldKey = GlobalKey(); GlobalKey<CommonScaffoldState> homeScaffoldKey = GlobalKey();
List<Function> updateFunctionLists = []; List<Function> updateFunctionLists = [];
List<NavigationItem> currentNavigationItems = [];
bool updatePackagesLock = false;
bool healthcheckLock = false; bool healthcheckLock = false;
startListenUpdate() { startListenUpdate() {
@@ -44,7 +48,6 @@ class GlobalState {
bool isPatch = true, bool isPatch = true,
}) async { }) async {
final profilePath = await appPath.getProfilePath(config.currentProfileId); final profilePath = await appPath.getProfilePath(config.currentProfileId);
await config.currentProfile?.checkAndUpdate();
debugPrint("update config"); debugPrint("update config");
return clashCore.updateConfig(UpdateConfigParams( return clashCore.updateConfig(UpdateConfigParams(
profilePath: profilePath, profilePath: profilePath,
@@ -86,7 +89,7 @@ class GlobalState {
config: config, config: config,
isPatch: false, isPatch: false,
); );
if (res.isNotEmpty) return Result.error(res); if (res.isNotEmpty) return Result.error(message: res);
await updateGroups(appState); await updateGroups(appState);
changeProxy( changeProxy(
appState: appState, appState: appState,
@@ -137,6 +140,14 @@ class GlobalState {
}); });
} }
updatePackages(AppState appState) async {
if (appState.packages.isEmpty && updatePackagesLock == false) {
updatePackagesLock = true;
appState.packages = await app?.getPackages() ?? [];
updatePackagesLock = false;
}
}
updateNavigationItems({ updateNavigationItems({
required AppState appState, required AppState appState,
required Config config, required Config config,
@@ -158,26 +169,18 @@ class GlobalState {
required String title, required String title,
required InlineSpan message, required InlineSpan message,
Function()? onTab, Function()? onTab,
String? confirmText,
}) { }) {
showCommonDialog( showCommonDialog(
child: Builder( child: Builder(
builder: (context) { builder: (context) {
return AlertDialog( return AlertDialog(
title: Text(title), title: Text(title),
content: Container( content: SizedBox(
width: 300, width: 300,
constraints: const BoxConstraints( child: RichText(
maxHeight: 200 text: TextSpan(
),
child: SingleChildScrollView(
child: RichText(
overflow: TextOverflow.visible,
text: TextSpan(
style: Theme.of(context).textTheme.labelLarge, style: Theme.of(context).textTheme.labelLarge,
children: [message], children: [message]),
),
),
), ),
), ),
actions: [ actions: [
@@ -186,7 +189,7 @@ class GlobalState {
() { () {
Navigator.of(context).pop(); Navigator.of(context).pop();
}, },
child: Text(confirmText ?? appLocalizations.confirm), child: Text(appLocalizations.confirm),
) )
], ],
); );
@@ -195,7 +198,7 @@ class GlobalState {
); );
} }
Future<T?> showCommonDialog<T>({ showCommonDialog<T>({
required Widget child, required Widget child,
}) async { }) async {
return await showModal<T>( return await showModal<T>(
@@ -204,10 +207,23 @@ class GlobalState {
barrierColor: Colors.black38, barrierColor: Colors.black38,
), ),
builder: (_) => child, builder: (_) => child,
filter: filter, filter: appConstant.filter,
); );
} }
checkUpdate(Function()? onTab) async {
final result = await Request.checkForUpdate();
if (result.type == ResultType.success) {
showMessage(
title: appLocalizations.discovery,
message: TextSpan(
text: result.data,
),
onTab: onTab,
);
}
}
updateTraffic({ updateTraffic({
AppState? appState, AppState? appState,
required Config config, required Config config,
@@ -258,8 +274,8 @@ class GlobalState {
} }
void updateCurrentDelay( void updateCurrentDelay(
String? proxyName, String? proxyName,
) { ) {
updateCurrentDelayDebounce ??= debounce<Function(String?)>((proxyName) { updateCurrentDelayDebounce ??= debounce<Function(String?)>((proxyName) {
if (proxyName != null) { if (proxyName != null) {
debugPrint("[delay]=====> $proxyName"); debugPrint("[delay]=====> $proxyName");
@@ -270,6 +286,7 @@ class GlobalState {
}); });
updateCurrentDelayDebounce!([proxyName]); updateCurrentDelayDebounce!([proxyName]);
} }
} }
final globalState = GlobalState(); final globalState = GlobalState();

View File

@@ -16,7 +16,6 @@ class AndroidContainer extends StatefulWidget {
class _AndroidContainerState extends State<AndroidContainer> class _AndroidContainerState extends State<AndroidContainer>
with WidgetsBindingObserver { with WidgetsBindingObserver {
@override @override
void initState() { void initState() {
super.initState(); super.initState();

View File

@@ -66,25 +66,25 @@ class CommonCard extends StatelessWidget {
final Widget child; final Widget child;
final Info? info; final Info? info;
BorderSide getBorderSide(BuildContext context, Set<WidgetState> states) { BorderSide getBorderSide(BuildContext context, Set<MaterialState> states) {
final colorScheme = Theme.of(context).colorScheme; final colorScheme = Theme.of(context).colorScheme;
var hoverColor = isSelected var hoverColor = isSelected
? colorScheme.primary.toLight() ? colorScheme.primary.toLight()
: colorScheme.primary.toLighter(); : colorScheme.primary.toLighter();
if (states.contains(WidgetState.hovered) || if (states.contains(MaterialState.hovered) ||
states.contains(WidgetState.focused) || states.contains(MaterialState.focused) ||
states.contains(WidgetState.pressed)) { states.contains(MaterialState.pressed)) {
return BorderSide( return BorderSide(
color: hoverColor, color: hoverColor,
); );
} }
return BorderSide( return BorderSide(
color: color:
isSelected ? colorScheme.primary : colorScheme.onSurface.toSoft(), isSelected ? colorScheme.primary : colorScheme.onBackground.toSoft(),
); );
} }
Color? getBackgroundColor(BuildContext context, Set<WidgetState> states) { Color? getBackgroundColor(BuildContext context, Set<MaterialState> states) {
final colorScheme = Theme.of(context).colorScheme; final colorScheme = Theme.of(context).colorScheme;
if (isSelected) { if (isSelected) {
return colorScheme.secondaryContainer; return colorScheme.secondaryContainer;
@@ -123,16 +123,16 @@ class CommonCard extends StatelessWidget {
return OutlinedButton( return OutlinedButton(
clipBehavior: Clip.antiAlias, clipBehavior: Clip.antiAlias,
style: ButtonStyle( style: ButtonStyle(
padding: const WidgetStatePropertyAll(EdgeInsets.zero), padding: const MaterialStatePropertyAll(EdgeInsets.zero),
shape: WidgetStatePropertyAll( shape: MaterialStatePropertyAll(
RoundedRectangleBorder( RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
), ),
), ),
backgroundColor: WidgetStateProperty.resolveWith( backgroundColor: MaterialStateProperty.resolveWith(
(states) => getBackgroundColor(context, states), (states) => getBackgroundColor(context, states),
), ),
side: WidgetStateProperty.resolveWith( side: MaterialStateProperty.resolveWith(
(states) => getBorderSide(context, states), (states) => getBorderSide(context, states),
), ),
), ),

View File

@@ -1,10 +1,6 @@
import 'package:fl_clash/common/common.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/scaffold.dart'; import 'package:fl_clash/widgets/scaffold.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'side_sheet.dart'; import 'side_sheet.dart';
showExtendPage( showExtendPage(
@@ -23,11 +19,9 @@ showExtendPage(
navigator.push( navigator.push(
ModalSideSheetRoute( ModalSideSheetRoute(
modalBarrierColor: Colors.black38, modalBarrierColor: Colors.black38,
builder: (context) => Selector<AppState, double>( builder: (context) => LayoutBuilder(
selector: (_, appState) => appState.viewWidth, builder: (_, __) {
builder: (_, viewWidth, __) { final isMobile = context.isMobile;
final isMobile =
globalState.appController.appState.viewMode == ViewMode.mobile;
final commonScaffold = CommonScaffold( final commonScaffold = CommonScaffold(
automaticallyImplyLeading: isMobile ? true : false, automaticallyImplyLeading: isMobile ? true : false,
actions: isMobile actions: isMobile
@@ -39,18 +33,18 @@ showExtendPage(
child: CloseButton(), child: CloseButton(),
), ),
], ],
title: title, title: Text(title),
body: uniqueBody, body: uniqueBody,
); );
return AnimatedContainer( return AnimatedContainer(
duration: kThemeAnimationDuration, duration: kThemeAnimationDuration,
width: isMobile ? viewWidth : extendPageWidth ?? 300, width: isMobile ? context.width : extendPageWidth ?? 300,
child: commonScaffold, child: commonScaffold,
); );
}, },
), ),
constraints: const BoxConstraints(), constraints: const BoxConstraints(),
filter: filter, filter: appConstant.filter,
), ),
); );
} }

View File

@@ -1,5 +1,4 @@
import 'package:fl_clash/enum/enum.dart'; import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/open_container.dart'; import 'package:fl_clash/widgets/open_container.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@@ -57,12 +56,10 @@ class OpenDelegate extends Delegate {
class NextDelegate extends Delegate { class NextDelegate extends Delegate {
final Widget widget; final Widget widget;
final String title; final String title;
final double? extendPageWidth;
const NextDelegate({ const NextDelegate({
required this.title, required this.title,
required this.widget, required this.widget,
this.extendPageWidth,
}); });
} }
@@ -206,7 +203,7 @@ class ListItem<T> extends StatelessWidget {
return OpenContainer( return OpenContainer(
closedBuilder: (_, action) { closedBuilder: (_, action) {
openAction() { openAction() {
final isMobile = globalState.appController.appState.viewMode == ViewMode.mobile; final isMobile = context.isMobile;
if (!isMobile) { if (!isMobile) {
showExtendPage( showExtendPage(
context, context,
@@ -223,9 +220,8 @@ class ListItem<T> extends StatelessWidget {
}, },
openBuilder: (_, action) { openBuilder: (_, action) {
return CommonScaffold.open( return CommonScaffold.open(
key: Key(openDelegate.title),
onBack: action, onBack: action,
title: openDelegate.title, title: Text(openDelegate.title),
body: openDelegate.widget, body: openDelegate.widget,
); );
}, },
@@ -235,22 +231,11 @@ class ListItem<T> extends StatelessWidget {
final nextDelegate = delegate as NextDelegate; final nextDelegate = delegate as NextDelegate;
return _buildListTile( return _buildListTile(
onTab: () { onTab: () {
final isMobile = globalState.appController.appState.viewMode == ViewMode.mobile;
if (!isMobile) {
showExtendPage(
context,
body: nextDelegate.widget,
title: nextDelegate.title,
extendPageWidth: nextDelegate.extendPageWidth,
);
return;
}
Navigator.of(context).push( Navigator.of(context).push(
MaterialPageRoute( MaterialPageRoute(
builder: (context) => CommonScaffold( builder: (context) => CommonScaffold(
key: Key(nextDelegate.title),
body: nextDelegate.widget, body: nextDelegate.widget,
title: nextDelegate.title, title: Text(nextDelegate.title),
), ),
), ),
); );

View File

@@ -448,8 +448,8 @@ class _OpenContainerRoute<T> extends ModalRoute<T> {
builder: (_, __, ___) { builder: (_, __, ___) {
_colorTween = _getColorTween( _colorTween = _getColorTween(
transitionType: transitionType, transitionType: transitionType,
closedColor: Theme.of(context).colorScheme.surface, closedColor: Theme.of(context).colorScheme.background,
openColor: Theme.of(context).colorScheme.surface, openColor: Theme.of(context).colorScheme.background,
middleColor: middleColor, middleColor: middleColor,
); );
return Align( return Align(

View File

@@ -1,13 +1,11 @@
import 'package:fl_clash/common/app_localizations.dart';
import 'package:fl_clash/common/system.dart'; import 'package:fl_clash/common/system.dart';
import 'package:fl_clash/state.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
class CommonScaffold extends StatefulWidget { class CommonScaffold extends StatefulWidget {
final Widget body; final Widget body;
final Widget? bottomNavigationBar; final Widget? bottomNavigationBar;
final String title; final Widget? title;
final Widget? leading; final Widget? leading;
final List<Widget>? actions; final List<Widget>? actions;
final bool automaticallyImplyLeading; final bool automaticallyImplyLeading;
@@ -17,7 +15,7 @@ class CommonScaffold extends StatefulWidget {
required this.body, required this.body,
this.bottomNavigationBar, this.bottomNavigationBar,
this.leading, this.leading,
required this.title, this.title,
this.actions, this.actions,
this.automaticallyImplyLeading = true, this.automaticallyImplyLeading = true,
}); });
@@ -25,7 +23,7 @@ class CommonScaffold extends StatefulWidget {
CommonScaffold.open({ CommonScaffold.open({
Key? key, Key? key,
required Widget body, required Widget body,
required String title, Widget? title,
required Function onBack, required Function onBack,
}) : this( }) : this(
key: key, key: key,
@@ -58,26 +56,10 @@ class CommonScaffoldState extends State<CommonScaffold> {
} }
} }
Future<T?> loadingRun<T>( loadingRun(Future<void> Function() futureFunction) async {
Future<T> Function() futureFunction, {
String? title,
}) async {
if (_loading.value == true) return null;
_loading.value = true; _loading.value = true;
try { await futureFunction();
final res = await futureFunction(); _loading.value = false;
_loading.value = false;
return res;
} catch (e) {
globalState.showMessage(
title: title ?? appLocalizations.tip,
message: TextSpan(
text: e.toString(),
),
);
_loading.value = false;
return null;
}
} }
@override @override
@@ -120,7 +102,7 @@ class CommonScaffoldState extends State<CommonScaffold> {
return AppBar( return AppBar(
automaticallyImplyLeading: widget.automaticallyImplyLeading, automaticallyImplyLeading: widget.automaticallyImplyLeading,
leading: widget.leading, leading: widget.leading,
title: Text(widget.title), title: widget.title,
actions: actions.isNotEmpty ? actions : widget.actions, actions: actions.isNotEmpty ? actions : widget.actions,
); );
}, },

View File

@@ -1,37 +0,0 @@
import 'package:flutter/material.dart';
class Section extends StatelessWidget {
final String title;
final Widget child;
const Section({
super.key,
required this.title,
required this.child,
});
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
child: Text(
title,
style: Theme.of(context).textTheme.labelLarge?.copyWith(
color: Theme.of(context).colorScheme.primary,
),
),
),
),
Expanded(
flex: 0,
child: child,
)
],
);
}
}

View File

@@ -3,7 +3,7 @@ import 'package:flutter/rendering.dart';
const Duration _bottomSheetEnterDuration = Duration(milliseconds: 300); const Duration _bottomSheetEnterDuration = Duration(milliseconds: 300);
const Duration _bottomSheetExitDuration = Duration(milliseconds: 200); const Duration _bottomSheetExitDuration = Duration(milliseconds: 200);
const Curve _modalBottomSheetCurve = Easing.standardDecelerate; const Curve _modalBottomSheetCurve = decelerateEasing;
const double _defaultScrollControlDisabledMaxHeightRatio = 9.0 / 16.0; const double _defaultScrollControlDisabledMaxHeightRatio = 9.0 / 16.0;
class SideSheet extends StatefulWidget { class SideSheet extends StatefulWidget {

View File

@@ -22,5 +22,4 @@ export 'tile_container.dart';
export 'chip.dart'; export 'chip.dart';
export 'fade_box.dart'; export 'fade_box.dart';
export 'app_state_container.dart'; export 'app_state_container.dart';
export 'text.dart'; export 'text.dart';
export 'section.dart';

View File

@@ -27,18 +27,12 @@ class _WindowContainerState extends State<WindowContainer>
windowManager.addListener(this); windowManager.addListener(this);
} }
@override
void onWindowResize() {
globalState.appController.updateViewWidth();
}
@override @override
void onWindowClose() async { void onWindowClose() async {
await globalState.appController.handleBackOrExit(); await globalState.appController.handleBackOrExit();
super.onWindowClose(); super.onWindowClose();
} }
@override @override
void onWindowMinimize() async { void onWindowMinimize() async {
await globalState.appController.savePreferences(); await globalState.appController.savePreferences();

View File

@@ -217,14 +217,6 @@ packages:
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.3.6" version: "2.3.6"
dio:
dependency: transitive
description:
name: dio
sha256: "11e40df547d418cc0c4900a9318b26304e665da6fa4755399a9ff9efd09034b5"
url: "https://pub.flutter-io.cn"
source: hosted
version: "5.4.3+1"
dynamic_color: dynamic_color:
dependency: "direct main" dependency: "direct main"
description: description:
@@ -318,6 +310,14 @@ packages:
description: flutter description: flutter
source: sdk source: sdk
version: "0.0.0" version: "0.0.0"
flutter_adaptive_scaffold:
dependency: "direct main"
description:
name: flutter_adaptive_scaffold
sha256: "9a1d5e9f728815e27b7b612883db19107ba8a35a46a97c757ea00896cb027451"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.1.10+2"
flutter_lints: flutter_lints:
dependency: "direct dev" dependency: "direct dev"
description: description:
@@ -1081,14 +1081,6 @@ packages:
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.4.5" version: "2.4.5"
webdav_client:
dependency: "direct main"
description:
name: webdav_client
sha256: "682fffc50b61dc0e8f46717171db03bf9caaa17347be41c0c91e297553bf86b2"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.2.2"
win32: win32:
dependency: transitive dependency: transitive
description: description:

View File

@@ -1,7 +1,7 @@
name: fl_clash name: fl_clash
description: A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free. description: A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
publish_to: 'none' publish_to: 'none'
version: 0.8.6 version: 0.8.3
environment: environment:
sdk: '>=3.1.0 <4.0.0' sdk: '>=3.1.0 <4.0.0'
@@ -33,11 +33,11 @@ dependencies:
animations: ^2.0.11 animations: ^2.0.11
package_info_plus: ^7.0.0 package_info_plus: ^7.0.0
url_launcher: ^6.2.6 url_launcher: ^6.2.6
flutter_adaptive_scaffold: ^0.1.10+1
freezed_annotation: ^2.4.1 freezed_annotation: ^2.4.1
image_picker: ^1.1.1 image_picker: ^1.1.1
zxing2: ^0.2.3 zxing2: ^0.2.3
image: ^4.1.7 image: ^4.1.7
webdav_client: ^1.2.2
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:
sdk: flutter sdk: flutter

View File

@@ -1,71 +1,18 @@
// ignore_for_file: avoid_print // ignore_for_file: avoid_print
import 'package:http/io_client.dart';
import 'dart:io'; import 'dart:io';
void main() async { main() async {
String input = """ final result = await Process.run(
'netstat',
<details markdown=1><summary>All changes from v0.8.5 to the latest commit:</summary> ["-ano","|","findstr",":7890","|","findstr","LISTENING"],
runInShell: true,
);
(unreleased) final output = result.stdout as String;
------------ final line = output.split('\n').first;
- Fix submit error. [chen08209] final pid = line.split(' ').firstWhere(
- Add WebDAV. [chen08209] (value) => value.trim().contains(RegExp(r'^\d+$')),
orElse: () => '',
add Auto check updates );
print(pid);
Optimize more details
- Optimize delayTest. [chen08209]
- Upgrade flutter version. [chen08209]
- Update kernel Add import profile via QR code image. [chen08209]
- Add compatibility mode and adapt clash scheme. [chen08209]
- Update Version. [chen08209]
- Reconstruction application proxy logic. [chen08209]
- Fix Tab destroy error. [chen08209]
- Optimize repeat healthcheck. [chen08209]
- Optimize Direct mode ui. [chen08209]
- Optimize Healthcheck. [chen08209]
- Remove proxies position animation, improve performance Add Telegram
Link. [chen08209]
- Update healthcheck policy. [chen08209]
- New Check URLTest. [chen08209]
- Fix the problem of invalid auto-selection. [chen08209]
- New Async UpdateConfig. [chen08209]
- Add changeProfileDebounce. [chen08209]
- Update Workflow. [chen08209]
- Fix ChangeProfile block. [chen08209]
- Fix Release Message Error. [chen08209]
- Update Selector 2. [chen08209]
- Update Version. [chen08209]
- Fix Proxies Select Error. [chen08209]
- Fix the problem that the proxy group is empty in global mode.
[chen08209]
- Fix the problem that the proxy group is empty in global mode.
[chen08209]
- Add ProxyProvider2. [chen08209]
- Add ProxyProvider. [chen08209]
- Update Version. [chen08209]
- Update ProxyGroup Sort. [chen08209]
- Fix Android quickStart VpnService some problems. [chen08209]
- Update version. [chen08209]
- Set Android notification low importance. [chen08209]
- Fix the issue that VpnService can't be closed correctly in special
cases. [chen08209]
- Fix the problem that TileService is not destroyed correctly in some
cases. [chen08209]
Adjust tab animation defaults
- Add Telegram in README_zh_CN.md. [chen08209]
- Add Telegram. [chen08209]
""";
const pattern = r'- (.+?)\. \[.+?\]';
final regex = RegExp(pattern);
for (final match in regex.allMatches(input)) {
final change = match.group(1);
print(change);
}
} }