From 2a4c15d0dc7e18b35d2951f77188edb5c7ec85aa Mon Sep 17 00:00:00 2001 From: LittleSheep <littlesheep.code@hotmail.com> Date: Thu, 20 Feb 2025 20:41:25 +0800 Subject: [PATCH] :lipstick: Optimize About page --- lib/widgets/about.dart | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/widgets/about.dart b/lib/widgets/about.dart index 1017092..d6880e7 100644 --- a/lib/widgets/about.dart +++ b/lib/widgets/about.dart @@ -97,6 +97,13 @@ class AboutScreen extends StatelessWidget { launchUrlString('https://status.solsynth.dev'); }, ), + TextButton( + style: denseButtonStyle, + child: Text('projectDetail').tr(), + onPressed: () { + launchUrlString('https://solsynth.dev/products/solar-network'); + }, + ), ], ), ).center(), @@ -108,6 +115,12 @@ class AboutScreen extends StatelessWidget { fontSize: 12, ), ), + InkWell( + child: Text('GitHub', style: TextStyle(fontSize: 12)), + onTap: () { + launchUrlString('https://github.com/Solsynth/HyperNet.Surface'); + }, + ) ], ), ),