Skip to content

Commit

Permalink
mod: QQ群更新,版本号对应修改
Browse files Browse the repository at this point in the history
  • Loading branch information
orz12 committed Feb 18, 2024
1 parent 94f3842 commit 93df04c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/pages/about/index.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class _AboutPageState extends State<AboutPage> {
),
),
ListTile(
onTap: () => _aboutController.qqChanel(),
onTap: () => _aboutController.qqGroup(),
title: const Text('QQ群'),
trailing: Icon(
Icons.arrow_forward_ios,
Expand Down Expand Up @@ -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";
}

// 获取远程版本
Expand Down Expand Up @@ -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群号');
}
Expand Down

0 comments on commit 93df04c

Please sign in to comment.