We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9514d1 commit fe168e6Copy full SHA for fe168e6
lib/src/schedules/presentations/schedule_page.dart
@@ -51,7 +51,8 @@ class _SchedulePageState extends ConsumerState<SchedulePage> {
51
final day = schedule.days[index];
52
final isCurrentDay = plan.bookmark.dayIndex == index;
53
final isTargetDay = todayTargetIndex == index;
54
- final dividerColor = isCurrentDay ? Colors.blue : badgeColor;
+ final dividerColor =
55
+ isCurrentDay ? Theme.of(context).colorScheme.primary : badgeColor;
56
final remainingDays = planNotifier
57
.getRemainingDays(Bookmark(dayIndex: index, sectionIndex: 0));
58
final date = plan.withTargetDate && remainingDays != null
0 commit comments