From 6ef36899a77c21251b4957099a120201fb6b3f3e Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:46:15 +0530 Subject: [PATCH] feat(ui): Adjust spacing and font weight in app customization page --- lib/features/profile/views/app_customization_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/features/profile/views/app_customization_page.dart b/lib/features/profile/views/app_customization_page.dart index 3c127e9..c8adde3 100644 --- a/lib/features/profile/views/app_customization_page.dart +++ b/lib/features/profile/views/app_customization_page.dart @@ -500,13 +500,13 @@ class AppCustomizationPage extends ConsumerWidget { ), color: theme.buttonPrimary, ), - const SizedBox(width: Spacing.sm), + const SizedBox(width: Spacing.md), Text( l10n.ttsEngineLabel, style: theme.bodyMedium?.copyWith( color: theme.sidebarForeground, - fontWeight: FontWeight.w500, + fontWeight: FontWeight.w600, ) ?? TextStyle(color: theme.sidebarForeground, fontSize: 14), ),