Skip to content

Commit dba0177

Browse files
committed
fix(account): add non-directional icon and consistent padding for logout action
- Replace directional icon with non-directional logout icon - Add consistent right padding for AppBar actions - Improve UI consistency and usability
1 parent dd0f0b1 commit dba0177

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/account/view/account_page.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,16 @@ class AccountPage extends StatelessWidget {
5050
)
5151
else
5252
IconButton(
53-
icon: const Icon(Icons.logout),
53+
icon: const Icon(
54+
Icons.logout,
55+
), // Non-directional icon for logout
5456
tooltip: l10n.accountSignOutTile,
5557
onPressed: () =>
5658
context.read<AppBloc>().add(const AppLogoutRequested()),
5759
),
60+
const SizedBox(
61+
width: AppSpacing.lg,
62+
), // Consistent right padding for the AppBar actions
5863
],
5964
),
6065
body: SingleChildScrollView(

0 commit comments

Comments
 (0)