Skip to content

Commit

Permalink
schedules: fix color of continue notice
Browse files Browse the repository at this point in the history
  • Loading branch information
wfleischer committed Dec 6, 2024
1 parent b975373 commit 987fc2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/schedules/presentations/schedule_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ class _SchedulePageState extends ConsumerState<SchedulePage> {
child: Text(
context.loc.schedulePageContinueNotice,
key: const Key('continue-notice'),
style: TextStyle(color: Theme.of(context).primaryColor),
style: TextStyle(
color: Theme.of(context).colorScheme.primary),
),
),
Flexible(
Expand Down

0 comments on commit 987fc2c

Please sign in to comment.