From f5b540dd8be71870b28fcce4eb6926f8420e4c67 Mon Sep 17 00:00:00 2001 From: Eren GUN Date: Wed, 2 Oct 2024 19:19:23 +0300 Subject: [PATCH] Add "Community App Sources" button to AddAppPage --- lib/pages/add_app.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/pages/add_app.dart b/lib/pages/add_app.dart index 9717dec..cd3c246 100644 --- a/lib/pages/add_app.dart +++ b/lib/pages/add_app.dart @@ -618,6 +618,12 @@ class AddAppPageState extends State { mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.stretch, children: [ + ElevatedButton(onPressed: + doingSomething ? null : + (){ + launchUrlString('https://apps.obtainium.imranr.dev/', + mode: LaunchMode.externalApplication); + }, child: Text(tr('communityAppSources'))), getUrlInputRow(), const SizedBox( height: 16,