From afb80f2131460d0a4fa1576a34fd0aab69e8a3ca Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Mon, 10 Mar 2025 16:07:09 +0530 Subject: [PATCH] [mob][photos] use ente colours everywhere --- mobile/lib/ui/components/bulk_edit_widget.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mobile/lib/ui/components/bulk_edit_widget.dart b/mobile/lib/ui/components/bulk_edit_widget.dart index 14a14348a8..7224f3ef7b 100644 --- a/mobile/lib/ui/components/bulk_edit_widget.dart +++ b/mobile/lib/ui/components/bulk_edit_widget.dart @@ -259,7 +259,7 @@ class _DateTimePickerWidgetState extends State { Container( height: 220, decoration: BoxDecoration( - color: Colors.grey[900], + color: colorScheme.backgroundElevated2, borderRadius: BorderRadius.circular(12), ), margin: const EdgeInsets.symmetric(horizontal: 16), @@ -280,7 +280,6 @@ class _DateTimePickerWidgetState extends State { : CupertinoDatePickerMode.date, initialDateTime: _selectedDateTime, minimumDate: DateTime(1800), - // Use the maxDateTime parameter if provided, otherwise default to 2023 maximumDate: widget.maxDateTime, use24hFormat: MediaQuery.of(context).alwaysUse24HourFormat, onDateTimeChanged: (DateTime newDateTime) {