forme 2.0.0-beta3+2 copy "forme: ^2.0.0-beta3+2" to clipboard
forme: ^2.0.0-beta3+2 copied to clipboard

outdated

a powerful flutter form widget , for me,for you , renamed from form_builder

Screenshot #

screenshot

screenshot2

Simple Usage #

add dependency #

flutter pub add forme

create forme #

FormeKey key = FormeKey();// formekey is a global key , also can be used to control form
Widget child = formContent;
Widget forme = Forme(
	key:key,
	child:child,
)

Forme Attributes #

Attribute Required Type Description
key false FormeKey a global key, also used to control form
child true Widget form content widget
readOnly false bool whether form should be readOnly,default is false
onChanged false FormeValueChanged listen form field's value change
initialValue false Map<String,dynamic> initialValue , will override FormField's initialValue
validateErrorListener false ValidateErrorListener listen form field's errorText change
onWillPop false WillPopCallback Signature for a callback that verifies that it's OK to call Navigator.pop

Differences Between Form and Forme #

Forme is a form widget, but forme is not wrapped in a Form , because I don't want to refresh whole form after field's value changed or a validate performed , so it is a bit more complexable than Form.

Difference Form Forme
AutovalidateMode support both Form and field only support field
onChanged won't fired if value changed via state.didChange or state.setValue fired whenever field's value changed
rebuild strategy when field value changed or perform a validation on field , all form fields will be rebuilded only rebuild field that value changed or validated

Forme Fields #

field type #

	-StatefulField
		- ValueField
			- NonnullValueField
		- CommonField

attributes supported by all statefule fields #

Attribute Required Type Description
name false String field's id,should be unique in form
builder true FieldContentBuilder build field content
readOnly false bool whether field should be readOnly,default is false
focusListener false FocusListener listen field's focus change
model true FormeModel FormeModel used to provider widget render data

attributes supported by all value fields #

Attribute Required Type Description
onChanged false FormeFieldValueChanged listen field's value change
validateErrorListener false ValidateErrorListener listen field's errorText change
validator false FormFieldValidator validate field's value
autovalidateMode false AutovalidateMode auto validate mode , default is AutovalidateMode.disabled
initialValue false dynamic initialValue,can be overwritten by forme's initialValue
onSaved false FormFieldSetter triggered when call forme or field's save method

attributes supported by all nonnull value fields #

Attribute Required Type Description
onChanged false NonnullFormeFieldValueChanged listen field's value change
validateErrorListener false ValidateErrorListener listen field's errorText change
validator false NonnullFieldValidator validate field's value
autovalidateMode false AutovalidateMode auto validate mode , default is AutovalidateMode.disabled
initialValue true dynamic initialValue,can be overwritten by forme's initialValue
onSaved false NonnullFormFieldSetter triggered when call forme or field's save method

currently supported fields #

Name Return Value Nullable
FormeTextField string false
FormeDateTimeTextField DateTime true
FormeNumberTextField num true
FormeTimeTextField TimeOfDay true
FormeDateRangeTextField DateTimeRange true
FormeSlider double false
FormeRangeSlider RangeValues false
FormeFilterChip List< T> false
FormeChoiceChip T true
FormeSingleCheckbox bool false
FormeSingleSwitch bool false
FormeDropdownButton T true
FormeListTile List< T> false
FormeRadioGroup T true
FormeCupertinoPicker int false
FormeCupertinoTimerField Duration true
FormeCupertinoDateField DateTime true

Control Form Field #

TODO

Custom way display error text #

if default error text display can not fit your needs , you can implementing a custom error display via ValueField's validateErrorListener or FormeValueFieldController's errorTextNotifier

via validateErrorListener #

validateErrorListener will triggered whenever errorText of field changes , it is suitable when you want to update field according to error state of field

eg: change border color when error state changes

FormeTextField(
	validator: validator,
	validateErrorListener: (m, a) {
		InputBorder border = OutlineInputBorder(
				borderRadius: BorderRadius.circular(30.0),
				borderSide: BorderSide(color: a == null ? Colors.green : Colors.red, width: 1));
		m.updateModel(FormeTextFieldModel(
			decoration: InputDecoration(
				focusedBorder: border, enabledBorder: border)));
	},
),

via errorTextNotifier #

errorTextNotifier is more smart than validateErrorListener.

eg: when your want to display an valid or invalid suffix icon according to error state of field, in validateErrorListener , update model will rebuild whole field, but with errorTextNotifier, you can only rebuild the suffix icon, below is an example to do this:

suffixicon: Builder(
	builder: (context) {
		FormeValueFieldController<String, FormeModel>
			controller = FormeFieldController.of(context);
		return ValueListenableBuilder<Optional<String>?>(
			valueListenable: controller.errorTextNotifier,
			child: const IconButton(
				onPressed: null,
				icon: const Icon(
				Icons.check,
				color: Colors.green,
				)),
			builder: (context, errorText, child) {
			if (errorText == null)
				return SizedBox();
			else
				return errorText.isPresent
					? const IconButton(
						onPressed: null,
						icon: const Icon(
						Icons.error,
						color: Colors.red,
						))
					: child!;
			});
	},
),

you shouldn't use FormeValueFieldController's errorTextNotifier out of field ,use FormFieldNotifier.errorTextNotifier instead

lifecycle of FormeValueFieldController's errorTextNotifier is same as field,when used it on another widget , errorTextNotifier will disposed before removeListener , which will cause an error in debug mode

FormFieldNotifier is from formKey.fieldNotifier(fieldName),it's lifecycle is same as Forme, typically used to build a widget which is not a stateful field but relies on state of field , eg: you want to display error of a field on a singleton Text Widget

Column(
	children:[
		FormeTextField(validator:validator,name:name),
		ValueListenableBuilder<Optional<String>?>(
			valueListenable: formeKey.fieldNotifier(name).errorTextNotifier,
			build: (context,errorText,child){
				return errorText == null || errorText.isNotPresent ? SizedBox() : Text(errorText.value!);
			},
		),
])

FormeKey Methods #

whether form has a name field #

bool has = formeKey.hasField(String name);

whether current form is readOnly #

bool readOnly = formeKey.readOnly;

set readOnly #

formeKey.readOnly = bool readOnly;

get field's controller #

T controller = formeKey.field<T extends FormeFieldController>(String name);

get value field's controller #

T controller = formeKey.valueField<T extends FormeValueFieldController>(String name);

get form data #

Map<String, dynamic> data = formeKey.data;

get form validate errors #

should call this method after valdiate form

List<FormeFieldControllerWithError> errors = formeKey.errors;

quiety validate #

validate form quietly and return fields with a error

List<FormeFieldControllerWithError> errors = formKey.quietlyValidate();

set form data #

formeKey.data = Map<String,dynamic> data;// equals to formeKey.setData(data,trigger:true)
formKey.setData(Map<String,dynamic> data,{bool trigger}) // if trigger is true,will trigger fields' onChanged listener

reset form #

formeKey.reset();

validate form #

bool isValid = formeKey.validate();

whether form is valid #

bool isValid = formeKey.isValid;

save form #

formeKey.save();

Forme Field Methods #

get forme controller #

FormeController formeController = field.controller;

get field's name #

String? name = field.name

whether current field is readOnly #

bool readOnly = field.readOnly;

set readOnly on field #

field.readOnly = bool readOnly;

whether current field is focusable #

bool focusable = field.focusable;

whether current field is focusd #

bool hasFocus = field.hasFocus;

focus|unfocus current Field #

field.focus = bool focus;

whether current field is a value field #

bool isValueField = field.isValueField;

set field model #

field.model = FormeModel model;

update field model #

field.updateModel(FormeModel model);

get field model #

FormeModel model = field.model;

ensure field is visible in viewport #

Future<void> result = field.ensureVisibe({Duration? duration,
      Curve? curve,
      ScrollPositionAlignmentPolicy? alignmentPolicy,
      double? alignment});

Forme Value Field Methods #

FormeValueFieldController is extended FormeFieldController

get field value #

dynamic value = valueField.value;

set field value #

valueField.value = dynamic data;// equals to formeKey.setData(data,trigger:true)
valueField.setValue(dynamic data,{bool trigger}) // if trigger is true,will trigger fields' onChanged listener

reset field #

valueField.reset();

validate field #

bool isValid = valueField.validate();

whether field is valid #

bool isValid = valueField.isValid;

get errorText #

String? errorText = valueField.errorText;

quiety validate #

String? errorText = valueField.quietlyValidate();

save field #

valueField.save();

get decorator model #

FormeModel? decoratorModel = valueField.currentDecoratorModel;

update decorator model #

valueField.updateDecoratorModel(FormeModel model);

set decorator model #

valueField.decoratorModel = FormModel model;

build your field #

  1. create your FormeModel , if you don't need it , use FormeEmptyModel instead
  2. create your ValueField<T,E>|NonnullValueField<T,E> , T is your field return value's type, E is your FormeModel's type
  3. if you want to create your custom State,extends ValueFieldState|NonnullValueFieldState

links below is some examples to help you to build your field

common field #

  1. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_visible.dart
  2. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_flex.dart

value field #

  1. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_filter_chip.dart
  2. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_radio_group.dart

nonnull value field #

  1. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_list_tile.dart
  2. https://github.com/wwwqyhme/forme/blob/main/lib/src/field/forme_slider.dart
25
likes
0
pub points
67%
popularity

Publisher

verified publisherqyh.me

a powerful flutter form widget , for me,for you , renamed from form_builder

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on forme