From d8285c772e180cd8bb4587f9be903a14f632b78b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Wed, 28 Jan 2026 03:23:20 +0100 Subject: [PATCH] Adjust spacing in account settings dialog for improved layout --- b0esche_cloud/lib/widgets/account_settings_dialog.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/b0esche_cloud/lib/widgets/account_settings_dialog.dart b/b0esche_cloud/lib/widgets/account_settings_dialog.dart index ff5da58..378b2ad 100644 --- a/b0esche_cloud/lib/widgets/account_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/account_settings_dialog.dart @@ -336,7 +336,7 @@ class _AccountSettingsDialogState extends State { Center( child: Column( children: [ - SizedBox(height: 16), + const SizedBox(height: 32), GestureDetector( onTap: _pickAndUploadAvatar, child: CircleAvatar( @@ -413,14 +413,14 @@ class _AccountSettingsDialogState extends State { ), ), ), - const SizedBox(height: 80), // Space for logout button + const SizedBox(height: 56), // Space for logout button ], ), ), // Logout Button in bottom right corner of profile tab Positioned( - bottom: 16, - right: 16, + bottom: 8, + right: 8, child: IconButton( onPressed: _logout, icon: Icon(Icons.logout, color: AppTheme.errorColor),