From 1e7b0df0df0d3dd1e0b9faeeff3d45e81644f575 Mon Sep 17 00:00:00 2001 From: niuhuan Date: Fri, 19 Nov 2021 10:09:20 +0800 Subject: [PATCH] add go to releases action --- lib/screens/AboutScreen.dart | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/lib/screens/AboutScreen.dart b/lib/screens/AboutScreen.dart index a71a901..e2e67e0 100644 --- a/lib/screens/AboutScreen.dart +++ b/lib/screens/AboutScreen.dart @@ -197,6 +197,25 @@ class _AboutScreenState extends State { ], ); } - return Container(); + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Divider(), + Container( + padding: EdgeInsets.all(15), + child: Text.rich( + TextSpan( + text: "去RELEASE仓库", + style: TextStyle( + height: 1.3, + color: Theme.of(context).colorScheme.primary, + ), + recognizer: TapGestureRecognizer() + ..onTap = () => openUrl(_releasesUrl), + ), + ), + ), + ], + ); } }