From d7045aba2a64ff878e7c273417fe335176e056d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Thu, 29 Jan 2026 10:47:50 +0100 Subject: [PATCH] Add save button to AccountSettingsDialog for profile updates --- b0esche_cloud/lib/widgets/account_settings_dialog.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/b0esche_cloud/lib/widgets/account_settings_dialog.dart b/b0esche_cloud/lib/widgets/account_settings_dialog.dart index 5aaa45f..a862f1c 100644 --- a/b0esche_cloud/lib/widgets/account_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/account_settings_dialog.dart @@ -620,10 +620,12 @@ class _AccountSettingsDialogState extends State { ), const SizedBox(height: 24), + // Save Button + Center( child: SizedBox( width: 144, child: ModernGlassButton( - onPressed: _isLoading ? null : _updateProfile, + onPressed: _isLoading ? () {} : () => _updateProfile(), isLoading: _isLoading, child: _isLoading ? const SizedBox( @@ -639,6 +641,7 @@ class _AccountSettingsDialogState extends State { : const Text('Save Changes'), ), ), + ), const SizedBox(height: 2), // Space for logout button ], ),