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 173 additions and 177 deletions
Showing only changes of commit 5da1b6eecb - Show all commits

View File

@@ -41,7 +41,6 @@ class _SettingsViewState extends State<SettingsView> {
appBar: AppBar(backgroundColor: CustomTheme.backgroundColor),
backgroundColor: CustomTheme.backgroundColor,
body: SingleChildScrollView(
child: Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
@@ -88,9 +87,7 @@ class _SettingsViewState extends State<SettingsView> {
icon: Icons.download,
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
onPressed: () async {
final result = await DataTransferService.importData(
context,
);
final result = await DataTransferService.importData(context);
if (!context.mounted) return;
showImportSnackBar(context: context, result: result);
},
@@ -229,7 +226,6 @@ class _SettingsViewState extends State<SettingsView> {
),
),
),
),
);
}

View File

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