Merge cleaning
This commit is contained in:
@@ -123,11 +123,21 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
actions: [
|
actions: [
|
||||||
AnimatedDialogButton(
|
AnimatedDialogButton(
|
||||||
onPressed: () => Navigator.of(context).pop(false),
|
onPressed: () => Navigator.of(context).pop(false),
|
||||||
child: Text(loc.cancel, style: const TextStyle(color: CustomTheme.textColor)),
|
child: Text(
|
||||||
|
loc.cancel,
|
||||||
|
style: const TextStyle(
|
||||||
|
color: CustomTheme.textColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
AnimatedDialogButton(
|
AnimatedDialogButton(
|
||||||
onPressed: () => Navigator.of(context).pop(true),
|
onPressed: () => Navigator.of(context).pop(true),
|
||||||
child: Text(loc.delete, style: TextStyle(color: CustomTheme.secondaryColor)),
|
child: Text(
|
||||||
|
loc.delete,
|
||||||
|
style: TextStyle(
|
||||||
|
color: CustomTheme.secondaryColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -135,7 +145,7 @@ class _SettingsViewState extends State<SettingsView> {
|
|||||||
if (confirmed == true && context.mounted) {
|
if (confirmed == true && context.mounted) {
|
||||||
DataTransferService.deleteAllData(context);
|
DataTransferService.deleteAllData(context);
|
||||||
showSnackbar(
|
showSnackbar(
|
||||||
context: context,
|
context: scaffoldMessengerContext,
|
||||||
message: AppLocalizations.of(
|
message: AppLocalizations.of(
|
||||||
context,
|
context,
|
||||||
).data_successfully_deleted,
|
).data_successfully_deleted,
|
||||||
|
|||||||
@@ -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.7+211
|
version: 0.0.7+212
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user