custom_reactive_text_field 1.0.0 custom_reactive_text_field: ^1.0.0 copied to clipboard
A Custom Reactive form Text field.
Features #
Its a custom ReactiveTextFormField component. It can be used within ReactForms for form validations. It supports all features of TextFormField with more enhanced Validators
Getting started #
Pre-Requisites: In pubspec.yaml add in your dependencies custom_reactive_text_field : 1.0.0 Import the package 'package:custom_reactive_text_field/custom_reactive_text_field.dart';
Usage #
CustomTextFormField(
label: 'Mobile number',
formControlName: mobileNumberKey,
maxLength: 10,
isRequired: true,
),
to /example
folder.