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()), ); }