From 93df04c84ed351381f1a6fd2521d8cc6ed7d02cd Mon Sep 17 00:00:00 2001 From: orz12 Date: Sun, 18 Feb 2024 17:08:23 +0800 Subject: [PATCH] =?UTF-8?q?mod:=20QQ=E7=BE=A4=E6=9B=B4=E6=96=B0=EF=BC=8C?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=E5=AF=B9=E5=BA=94=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/about/index.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/pages/about/index.dart b/lib/pages/about/index.dart index 1b809f2c..2b495a79 100644 --- a/lib/pages/about/index.dart +++ b/lib/pages/about/index.dart @@ -120,7 +120,7 @@ class _AboutPageState extends State { ), ), ListTile( - onTap: () => _aboutController.qqChanel(), + onTap: () => _aboutController.qqGroup(), title: const Text('QQ群'), trailing: Icon( Icons.arrow_forward_ios, @@ -201,7 +201,7 @@ class AboutController extends GetxController { if (Platform.isAndroid) { buildNumber = buildNumber.substring(0,buildNumber.length - 1); } - currentVersion.value = "v${currentInfo.version}+$buildNumber"; + currentVersion.value = "${currentInfo.version}+$buildNumber"; } // 获取远程版本 @@ -237,10 +237,10 @@ class AboutController extends GetxController { ); } - // qq频道 - qqChanel() { + // qq群 + qqGroup() { Clipboard.setData( - const ClipboardData(text: '489981949'), + const ClipboardData(text: '392176105'), ); SmartDialog.showToast('已复制QQ群号'); }