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( GestureDetector(
onTap: () async { onTap: () async {
final uri = Uri.parse(package.homepage!); final uri = Uri.parse(package.homepage!);
if (await canLaunchUrl(uri)) { await launchUrl(uri, mode: LaunchMode.platformDefault);
launchUrl(uri);
}
}, },
child: SizedBox(
width: 300,
flixcoo marked this conversation as resolved Outdated

clickable machen?

clickable machen?
child: Text( child: Text(
package.homepage!, package.homepage!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
@@ -99,6 +101,7 @@ class LicenseDetailView extends StatelessWidget {
), ),
), ),
), ),
),
], ],
], ],
), ),

View File

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