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,