From 5ecfc825061c0a1a50bbe50ccdedf37eea602b8f Mon Sep 17 00:00:00 2001 From: xkeyC <3334969096@qq.com> Date: Fri, 17 Nov 2023 19:20:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=9C=A8=E7=BA=BF=E5=8F=8D?= =?UTF-8?q?=E9=A6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ui/about/about_ui.dart | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/lib/ui/about/about_ui.dart b/lib/ui/about/about_ui.dart index 59a92f0..a84ad03 100644 --- a/lib/ui/about/about_ui.dart +++ b/lib/ui/about/about_ui.dart @@ -56,10 +56,27 @@ class AboutUI extends BaseUI { IconButton( icon: Row( children: [ - const Icon(FontAwesomeIcons.qq), - const SizedBox(width: 6), + const Icon(FontAwesomeIcons.link), + const SizedBox(width: 8), Text( - "反馈QQ群: 940696487", + "在线反馈", + style: TextStyle( + fontSize: 14, color: Colors.white.withOpacity(.6)), + ), + ], + ), + onPressed: () { + launchUrlString("https://txc.qq.com/products/614843"); + }, + ), + const SizedBox(width: 24), + IconButton( + icon: Row( + children: [ + const Icon(FontAwesomeIcons.qq), + const SizedBox(width: 8), + Text( + "QQ群: 940696487", style: TextStyle( fontSize: 14, color: Colors.white.withOpacity(.6)), ), @@ -75,7 +92,7 @@ class AboutUI extends BaseUI { icon: Row( children: [ const Icon(FontAwesomeIcons.envelope), - const SizedBox(width: 6), + const SizedBox(width: 8), Text( "邮箱: scbox@xkeyc.com", style: TextStyle( @@ -91,8 +108,8 @@ class AboutUI extends BaseUI { IconButton( icon: Row( children: [ - const Icon(FontAwesomeIcons.gitlab), - const SizedBox(width: 6), + const Icon(FontAwesomeIcons.github), + const SizedBox(width: 8), Text( "开源", style: TextStyle( @@ -102,7 +119,7 @@ class AboutUI extends BaseUI { ), onPressed: () { launchUrlString( - "https://jihulab.com/StarCitizenCN_Community/StarCitizenDoctor"); + "https://github.com/xkeyC/StarCitizenToolBox"); }, ), ],