well_formed 0.1.0
well_formed: ^0.1.0 copied to clipboard
Form field widgets designed to take much of the burden of form-related coding off the developer's back — masks, validations, keyboard type, etc.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:well_formed/well_formed.dart';
void main() {
runApp(
FormFieldTester(
BasicTextField(trim: true, blank: 'Please fill in this field'),
),
);
}