mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 19:03:47 +02:00
Changed readme
This commit is contained in:
parent
dd6fdcce45
commit
b0402e0385
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ abstract class FlutterFormInputWidget<T> 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<T> {
|
|||
/// 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.
|
||||
|
|
Loading…
Reference in a new issue