flutter_reactive_form

Last updated:

0 purchases

flutter_reactive_form Image
flutter_reactive_form Images
Add to Cart

Description:

flutter reactive form

Minimum Requirements #

Dart SDK: >=2.18.6 <4.0.0
Flutter: >=1.17.0

Installation and Usage #
Once you're familiar with Flutter you may install this package adding flutter_reactive_form to the dependencies list
of the pubspec.yaml file as follow:
dependencies:
flutter:
sdk: flutter

flutter_reactive_form: ^0.0.1
copied to clipboard
Then run the command flutter packages get on the console.
Creating a form #
A form is composed by multiple field controls.
To declare a form with the fields name and birthday is as simple as:

name have a default value.
birthday is null by default.

final form = ReactiveForm(
onChanged: (formData, fieldChanged) {
/// Handle the change.
},
formGroup:{
"name": FormFieldControl<String>(
fieldEnum: "name",
name: "Name",
isRequired: true,
isEnabled: true,
data: "Nghi",
),
"birthday": FormFieldControl<DateTime?>(
fieldEnum: "birthday",
name: "Birthday",
isRequired: true,
isEnabled: true,
data: null,
),
},
);
copied to clipboard
How to get/set Form's data #
You can get the value of a field:
String get name => _reactiveForm.getFieldData<String>(fieldEnum: 'name');
DateTime? get birthday => _reactiveForm.getFieldData<DateTime>(fieldEnum: 'birthday');

copied to clipboard
To set value to fields:
_reactiveForm.setFieldData(fieldEnum: 'name', data: "Kate");
copied to clipboard
Validations #
Set up your validations as follows:
_reactiveForm.setFormatValidationMap({
'birthday': (birthday) {
if (birthday == null || birthday.isAfter(DateTime.now())) {
return "The time is invalid";
}
return '';
},
});
copied to clipboard
To validate a field:
final fieldControl = _reactiveForm.getField(fieldEnum: 'name');
final error = _reactiveForm.validateFormatField(fieldControl!);
copied to clipboard
To validate a form:
final errors = _reactiveForm.validateFormatFields();
copied to clipboard
Using mixin #
There're available functions in ReactiveFormMixin that interface with the form internally:
class ProfileFormController with ReactiveFormMixin {
/// You can call it in state.initState()
void init() {
final form = ReactiveForm(
onChanged: (formData, fieldChanged) {
/// Handle the change.
},
formGroup: {
"name": FormFieldControl<String>(
fieldEnum: "name",
name: "Name",
isRequired: true,
isEnabled: true,
data: "Nghi",
),
"birthday": FormFieldControl<DateTime?>(
fieldEnum: "birthday",
name: "Birthday",
isRequired: true,
isEnabled: true,
data: null,
),
},
);
initForm(form);
setFormatValidationMap({
'birthday': (birthday) {
if (birthday == null || birthday.isAfter(DateTime.now())) {
return "The time is invalid";
}
return '';
},
});
}

/// Interact with UI
String? getName() {
return getFieldData<String>(fieldEnum: 'name');
}

DateTime? getBirthday() {
return getFieldData<DateTime>(fieldEnum: 'birthday')!;
}

void setName(String name) {
setFieldData(fieldEnum: 'name', data: name);
}

void setBirthday(DateTime birthday) {
setFieldData(fieldEnum: 'birthday', data: birthday);
}
///
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.