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 2b54f16 commit f608106Copy full SHA for f608106
CHANGELOG.md
@@ -1,6 +1,7 @@
1
# 0.1.3
2
- INFO: Update dependencies (Flutter 3.10)
3
- FIX: Fix validation of boolean answer format
4
+- FIX: Fix localization of next button
5
# 0.1.2
6
- INFO: Update dependencies (Flutter 3.7.0)
7
lib/src/views/widget/step_view.dart
@@ -51,10 +51,8 @@ class StepView extends StatelessWidget {
51
surveyController.nextStep(context, resultFunction)
52
: null,
53
child: Text(
54
- step.buttonText?.toUpperCase() ??
55
- context
56
- .read<Map<String, String>?>()?['next']
57
- ?.toUpperCase() ??
+ context.read<Map<String, String>?>()?['next'] ??
+ step.buttonText ??
58
'Next',
59
style: TextStyle(
60
color: isValid
0 commit comments