From b0402e0385dca148d74e85ef7177df6bf8540e8f Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Wed, 12 Oct 2022 16:35:33 +0200 Subject: [PATCH] Changed readme --- lib/src/widgets/input/abstractions.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/widgets/input/abstractions.dart b/lib/src/widgets/input/abstractions.dart index c439d20..7f2908f 100644 --- a/lib/src/widgets/input/abstractions.dart +++ b/lib/src/widgets/input/abstractions.dart @@ -56,7 +56,7 @@ abstract class FlutterFormInputWidget extends ConsumerWidget { /// [checkPageDescription] is the same as checkPageTitle but for the description. /// If null no description will be shown. /// -/// [onChanged] can be set to get the value whenever the user changes it. +/// [onChanged] can be set to get the value whenever the user changes it. Should not be used to save the value. /// /// [onSaved] goes of when the save function is called for the page if [onValidate] return null. /// @@ -86,7 +86,7 @@ abstract class FlutterFormInputController { /// If null no description will be shown. String Function(T? value)? checkPageDescription; - /// [onChanged] can be set to get the value whenever the user changes it. + /// [onChanged] can be set to get the value whenever the user changes it. Should not be used to save the value. void Function(T? value)? onChanged; /// [onSaved] goes of when the save function is called for the page if [onValidate] return null.