Skip to content

Commit

Permalink
Merge pull request #41 from mario-bermonti:mario-bermonti/issue40
Browse files Browse the repository at this point in the history
Present descriptive names for cognitive tasks and app bar title to participants cognitive tasks and
  • Loading branch information
mario-bermonti authored May 13, 2024
2 parents 4f7cb85 + d36b28d commit 178f4a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/app_bar/app_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CustomAppBar extends StatelessWidget implements PreferredSizeWidget {
@override
Widget build(BuildContext context) {
return AppBar(
title: const Text('mDigitSpanTask'),
title: const Text('mDigits'),
centerTitle: true,
automaticallyImplyLeading: allowBack,
actions: [NotificationsButton()],
Expand Down
4 changes: 2 additions & 2 deletions lib/src/task_list/view/task_buttons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DSBButton extends StatelessWidget {
taskRunner: runDigitSpanBackwards, taskName: 'ds_backwards');
},
child: Text(
'Digit Span Backwards',
'Memoria de números al revés',
style: Theme.of(context).textTheme.titleLarge,
),
);
Expand All @@ -36,7 +36,7 @@ class DSFButton extends StatelessWidget {
taskRunner: runDigitSpanForward, taskName: 'ds_forward');
},
child: Text(
'Digit Span Forward',
'Memoria de números',
style: Theme.of(context).textTheme.titleLarge,
),
);
Expand Down

0 comments on commit 178f4a8

Please sign in to comment.