Skip to content

Commit 711e00f

Browse files
committed
refactor: ensured consistent spacing around the content area within the AppShell, mirroring the sidebar's consistent spacing for a more balanced visual appearance.
1 parent 82859b1 commit 711e00f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

lib/app/view/app_shell.dart

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,15 @@ class AppShell extends StatelessWidget {
8888
label: l10n.appConfiguration,
8989
),
9090
],
91-
body: (_) => navigationShell,
91+
body: (_) => Padding(
92+
padding: const EdgeInsets.fromLTRB(
93+
0,
94+
AppSpacing.sm,
95+
AppSpacing.sm,
96+
AppSpacing.sm,
97+
),
98+
child: navigationShell,
99+
),
92100
),
93101
);
94102
}

0 commit comments

Comments
 (0)