diff --git a/lib/pages/add_app.dart b/lib/pages/add_app.dart index cd3c246..bdeb203 100644 --- a/lib/pages/add_app.dart +++ b/lib/pages/add_app.dart @@ -544,6 +544,7 @@ class AddAppPageState extends State { Widget getSourcesListWidget() => Padding( padding: const EdgeInsets.all(16), child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ GestureDetector( onTap: () { @@ -600,7 +601,20 @@ class AddAppPageState extends State { fontWeight: FontWeight.bold, decoration: TextDecoration.underline, fontStyle: FontStyle.italic), - )) + )), + GestureDetector( + onTap: () { + launchUrlString('https://apps.obtainium.imranr.dev/', + mode: LaunchMode.externalApplication); + }, + child: Text( + tr('crowdsourcedConfigsShort'), + style: const TextStyle( + fontWeight: FontWeight.bold, + decoration: TextDecoration.underline, + fontStyle: FontStyle.italic), + ), + ), ], ), ); @@ -618,12 +632,6 @@ 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,