mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 19:03:47 +02:00
Removed problems
This commit is contained in:
parent
1eeaf65359
commit
dd6fdcce45
1 changed files with 4 additions and 4 deletions
|
@ -23,7 +23,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
|
|||
checkPageTitle: (dynamic amount) {
|
||||
return "Age: $amount years";
|
||||
},
|
||||
onChanged: (value) => print(value),
|
||||
onChanged: (value) => debugPrint(value.toString()),
|
||||
);
|
||||
|
||||
late final FlutterFormInputCarouselController carouselInputController;
|
||||
|
@ -50,7 +50,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
|
|||
checkPageTitle: (dynamic firstName) {
|
||||
return "First Name: $firstName";
|
||||
},
|
||||
onChanged: (value) => print(value),
|
||||
onChanged: (value) => debugPrint(value),
|
||||
);
|
||||
|
||||
FlutterFormInputPlainTextController lastNameController =
|
||||
|
@ -60,7 +60,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
|
|||
checkPageTitle: (dynamic lastName) {
|
||||
return "Last Name: $lastName";
|
||||
},
|
||||
onChanged: (value) => print(value),
|
||||
onChanged: (value) => debugPrint(value),
|
||||
);
|
||||
|
||||
@override
|
||||
|
@ -74,7 +74,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
|
|||
checkPageDescription: (dynamic index) {
|
||||
return cars[index]["description"];
|
||||
},
|
||||
onChanged: (value) => print(value),
|
||||
onChanged: (value) => debugPrint(value.toString()),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue