Removed problems

This commit is contained in:
Jacques Doeleman 2022-10-12 16:32:47 +02:00
parent 1eeaf65359
commit dd6fdcce45

View file

@ -23,7 +23,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
checkPageTitle: (dynamic amount) { checkPageTitle: (dynamic amount) {
return "Age: $amount years"; return "Age: $amount years";
}, },
onChanged: (value) => print(value), onChanged: (value) => debugPrint(value.toString()),
); );
late final FlutterFormInputCarouselController carouselInputController; late final FlutterFormInputCarouselController carouselInputController;
@ -50,7 +50,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
checkPageTitle: (dynamic firstName) { checkPageTitle: (dynamic firstName) {
return "First Name: $firstName"; return "First Name: $firstName";
}, },
onChanged: (value) => print(value), onChanged: (value) => debugPrint(value),
); );
FlutterFormInputPlainTextController lastNameController = FlutterFormInputPlainTextController lastNameController =
@ -60,7 +60,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
checkPageTitle: (dynamic lastName) { checkPageTitle: (dynamic lastName) {
return "Last Name: $lastName"; return "Last Name: $lastName";
}, },
onChanged: (value) => print(value), onChanged: (value) => debugPrint(value),
); );
@override @override
@ -74,7 +74,7 @@ class _FormExampleState extends ConsumerState<FormExample> {
checkPageDescription: (dynamic index) { checkPageDescription: (dynamic index) {
return cars[index]["description"]; return cars[index]["description"];
}, },
onChanged: (value) => print(value), onChanged: (value) => debugPrint(value.toString()),
); );
} }