Optimize performance

Update core

Optimize core stability

Fix linux tun authority check error

Fix some issues
This commit is contained in:
chen08209
2025-02-09 18:39:38 +08:00
parent 96328f66e9
commit 4e679f776e
138 changed files with 13013 additions and 8723 deletions

View File

@@ -91,7 +91,6 @@ class _InputDialogState extends State<InputDialog> {
_handleUpdate() async {
final text = textController.value.text;
if (text.isEmpty) return;
Navigator.of(context).pop<String>(text);
}
@@ -119,6 +118,9 @@ class _InputDialogState extends State<InputDialog> {
border: const OutlineInputBorder(),
suffixText: suffixText,
),
onSubmitted: (_){
_handleUpdate();
},
),
],
),