From cb180af7cfeaec64be53a727afff2ce9e15ccdb4 Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Tue, 24 Feb 2026 16:23:25 -0500 Subject: [PATCH] feat: Add example text to the attire capture page and remove explicit background color from the scaffold. --- .../lib/src/presentation/pages/attire_capture_page.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/mobile/packages/features/staff/profile_sections/onboarding/attire/lib/src/presentation/pages/attire_capture_page.dart b/apps/mobile/packages/features/staff/profile_sections/onboarding/attire/lib/src/presentation/pages/attire_capture_page.dart index 5f227ca9..9e420db7 100644 --- a/apps/mobile/packages/features/staff/profile_sections/onboarding/attire/lib/src/presentation/pages/attire_capture_page.dart +++ b/apps/mobile/packages/features/staff/profile_sections/onboarding/attire/lib/src/presentation/pages/attire_capture_page.dart @@ -55,7 +55,6 @@ class _AttireCapturePageState extends State { ); return Scaffold( - backgroundColor: UiColors.background, appBar: UiAppBar(title: widget.item.label, showBackButton: true), body: BlocConsumer( bloc: cubit, @@ -91,6 +90,11 @@ class _AttireCapturePageState extends State { AttireImagePreview(imageUrl: widget.item.imageUrl), const SizedBox(height: UiConstants.space6), + Text( + 'Example of the item that you need to upload.', + style: UiTypography.body1b.textSecondary, + textAlign: TextAlign.center, + ), Text( widget.item.description ?? '', style: UiTypography.body1r.textSecondary,