Skip to content

Commit

Permalink
Executed dart fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahilwers committed Mar 2, 2024
1 parent 81c1df1 commit 8ee395e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tracking-app/lib/views/project/project_edit_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class _ProjectEditWidgetState extends State<ProjectEditWidget> {
},
child: Text(
AppLocalizations.of(context)!.save,
style: Theme.of(context).textTheme.subtitle1!.copyWith(color: Colors.white),
style: Theme.of(context).textTheme.titleMedium!.copyWith(color: Colors.white),
),
),
_projectId != null
Expand All @@ -91,7 +91,7 @@ class _ProjectEditWidgetState extends State<ProjectEditWidget> {
},
child: Text(
AppLocalizations.of(context)!.delete,
style: Theme.of(context).textTheme.subtitle1!.copyWith(color: Colors.white),
style: Theme.of(context).textTheme.titleMedium!.copyWith(color: Colors.white),
),
)
: Container(),
Expand Down
4 changes: 2 additions & 2 deletions tracking-app/lib/views/timeentry/timeentry_edit_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class _TimeEntryEditWidgetState extends State<TimeEntryEditWidget> {
},
child: Text(
AppLocalizations.of(context)!.save,
style: Theme.of(context).textTheme.subtitle1!.copyWith(color: Colors.white),
style: Theme.of(context).textTheme.titleMedium!.copyWith(color: Colors.white),
),
),
_timeEntryId != null
Expand All @@ -107,7 +107,7 @@ class _TimeEntryEditWidgetState extends State<TimeEntryEditWidget> {
},
child: Text(
AppLocalizations.of(context)!.delete,
style: Theme.of(context).textTheme.subtitle1!.copyWith(color: Colors.white),
style: Theme.of(context).textTheme.titleMedium!.copyWith(color: Colors.white),
),
)
: Container(),
Expand Down

0 comments on commit 8ee395e

Please sign in to comment.