Adjust spacing in account settings dialog for improved layout

This commit is contained in:
Leon Bösche
2026-01-28 03:23:20 +01:00
parent 4519cacb44
commit d8285c772e

View File

@@ -336,7 +336,7 @@ class _AccountSettingsDialogState extends State<AccountSettingsDialog> {
Center(
child: Column(
children: [
SizedBox(height: 16),
const SizedBox(height: 32),
GestureDetector(
onTap: _pickAndUploadAvatar,
child: CircleAvatar(
@@ -413,14 +413,14 @@ class _AccountSettingsDialogState extends State<AccountSettingsDialog> {
),
),
),
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),