Changed settings links

This commit is contained in:
Juan Gilsanz Polo
2025-06-17 21:37:23 +02:00
parent 7f013e7cc6
commit 82ac5407a1
9 changed files with 52 additions and 53 deletions

View File

@@ -102,13 +102,22 @@ class _List extends ConsumerWidget {
onTap: () => openUrlCustomTab(Urls.linkdingRepo),
),
CustomListTile(
title: t.settings.contactDeveloper,
subtitle: t.settings.contactDeveloperDescription,
title: t.settings.moreInfoApp,
subtitle: t.settings.moreInfoAppDescription,
trailing: Icon(
Icons.open_in_new_rounded,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
onTap: () => openUrlCustomTab(Urls.support),
onTap: () => openUrlCustomTab(Urls.appDetailsPage),
),
CustomListTile(
title: t.settings.moreApps,
subtitle: t.settings.moreAppsDescription,
trailing: Icon(
Icons.open_in_new_rounded,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
onTap: () => openUrlCustomTab(Urls.appsWebsite),
),
CustomListTile(
title: t.settings.appVersion,
@@ -118,35 +127,6 @@ class _List extends ConsumerWidget {
title: t.settings.createdBy,
subtitle: Strings.createdBy,
),
Padding(
padding: const EdgeInsets.all(15),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
if (Platform.isAndroid)
IconButton(
onPressed: () => openUrlCustomTab(Urls.playStoreLink),
icon: SvgPicture.asset(
'assets/resources/google-play.svg',
color: Theme.of(context).colorScheme.onSurfaceVariant,
width: 30,
height: 30,
),
tooltip: t.settings.visitGooglePlay,
),
IconButton(
onPressed: () => openUrlCustomTab(Urls.gitHubRepo),
icon: SvgPicture.asset(
'assets/resources/github.svg',
color: Theme.of(context).colorScheme.onSurfaceVariant,
width: 30,
height: 30,
),
tooltip: t.settings.visitGitHubRepo,
),
],
),
),
],
),
],