We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0f0b1 commit dba0177Copy full SHA for dba0177
lib/account/view/account_page.dart
@@ -50,11 +50,16 @@ class AccountPage extends StatelessWidget {
50
)
51
else
52
IconButton(
53
- icon: const Icon(Icons.logout),
+ icon: const Icon(
54
+ Icons.logout,
55
+ ), // Non-directional icon for logout
56
tooltip: l10n.accountSignOutTile,
57
onPressed: () =>
58
context.read<AppBloc>().add(const AppLogoutRequested()),
59
),
60
+ const SizedBox(
61
+ width: AppSpacing.lg,
62
+ ), // Consistent right padding for the AppBar actions
63
],
64
65
body: SingleChildScrollView(
0 commit comments