Einstellungen ausgestalten #153

Merged
sneeex merged 23 commits from feature/151-einstellungen-ausgestalten into development 2026-01-12 19:00:26 +00:00
2 changed files with 15 additions and 12 deletions
Showing only changes of commit 80e601c10e - Show all commits

View File

@@ -84,12 +84,14 @@ class LicenseDetailView extends StatelessWidget {
GestureDetector(
onTap: () async {
final uri = Uri.parse(package.homepage!);
if (await canLaunchUrl(uri)) {
launchUrl(uri);
}
await launchUrl(uri, mode: LaunchMode.platformDefault);
},
child: SizedBox(
width: 300,
child: Text(
package.homepage!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 12,
@@ -99,6 +101,7 @@ class LicenseDetailView extends StatelessWidget {
),
),
),
),
],
],
),

View File

@@ -1,7 +1,7 @@
name: game_tracker
description: "Game Tracking App for Card Games"
publish_to: 'none'
version: 0.0.5+138
version: 0.0.5+143
environment:
sdk: ^3.8.1