From dd6fdcce454bf5e4e91d2cff7708674b61d4411c Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Wed, 12 Oct 2022 16:32:47 +0200 Subject: [PATCH] Removed problems --- example/lib/form_example.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/example/lib/form_example.dart b/example/lib/form_example.dart index 8c395ea..c3b0c88 100644 --- a/example/lib/form_example.dart +++ b/example/lib/form_example.dart @@ -23,7 +23,7 @@ class _FormExampleState extends ConsumerState { 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 { 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 { checkPageTitle: (dynamic lastName) { return "Last Name: $lastName"; }, - onChanged: (value) => print(value), + onChanged: (value) => debugPrint(value), ); @override @@ -74,7 +74,7 @@ class _FormExampleState extends ConsumerState { checkPageDescription: (dynamic index) { return cars[index]["description"]; }, - onChanged: (value) => print(value), + onChanged: (value) => debugPrint(value.toString()), ); }