Skip to content

Commit

Permalink
Merge pull request #126 from mario-bermonti:mario-bermonti/issue125
Browse files Browse the repository at this point in the history
improve: Change the 'continue' button text
  • Loading branch information
mario-bermonti committed May 29, 2024
2 parents e3bef0c + bb11efe commit f47095b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class StartPage extends StatelessWidget {
Get.back();
},
child: Text(
'Comenzar',
'Continuar',
style: Theme.of(context).textTheme.titleLarge,
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ResponseView extends StatelessWidget {
submitResponse();
},
child: Text(
'Seguir',
'Continuar',
style: Theme.of(context).textTheme.button,
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/digit_span_task/components/rest/rest_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class RestView extends StatelessWidget {
ElevatedButton(
onPressed: () => _restController.toNextScreen(),
child: Text(
'Comenzar',
'Continuar',
style: Theme.of(context).textTheme.button,
),
),
Expand Down

0 comments on commit f47095b

Please sign in to comment.