Skip to content

Commit

Permalink
fix(mobile): Fixes memory lane progress indicator color in dark mode (#…
Browse files Browse the repository at this point in the history
…7199)

* Fixes memory lane progress indicator color in dark mode

* Removed unused import
  • Loading branch information
martyfuhry authored Feb 19, 2024
1 parent c50d318 commit 59f8a88
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mobile/lib/modules/memories/ui/memory_progress_indicator.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:flutter/material.dart';
import 'package:immich_mobile/constants/immich_colors.dart';
import 'package:immich_mobile/extensions/build_context_extensions.dart';

class MemoryProgressIndicator extends StatelessWidget {
/// The number of ticks in the progress indicator
Expand Down Expand Up @@ -39,9 +38,9 @@ class MemoryProgressIndicator extends StatelessWidget {
decoration: BoxDecoration(
border: i == 0
? null
: Border(
: const Border(
left: BorderSide(
color: context.colorScheme.onSecondaryContainer,
color: Colors.black,
width: 1,
),
),
Expand Down

0 comments on commit 59f8a88

Please sign in to comment.