validasi 0.0.4 copy "validasi: ^0.0.4" to clipboard
validasi: ^0.0.4 copied to clipboard

An easy to use and flexible validation library for Dart and Flutter. Easily validate your forms input with built-in rules or create your own.

example/validasi_example.dart

import 'package:validasi/validasi.dart';

void main() {
  // simple single validation
  var idSchema = Validasi.number();

  idSchema.parse(null); // FieldErorr exception: field is required

  // nullable skip validation
  // will skip any rules (except custom rule) if the given value is null.
  Validasi.number().nullable().parse(null); // success

  // customize message and field name
  var nameSchema = Validasi.string().minLength(1, message: 'Name is required!');

  nameSchema.parse(null, path: 'name'); // FieldError: name is required

  // object schema validation
  var payloadSchema = Validasi.object({
    'name': Validasi.string().minLength(1).maxLength(200),
    'address': Validasi.string().minLength(1).maxLength(255)
  });

  var payload =
      payloadSchema.parse({'name': 'Asep', 'address': 'Somewhere else...'});

  print(payload.value); // return the parse payload (with casting)

  // array validation
  var arrSchema = Validasi.array(Validasi.string().minLength(1));

  // use `try` prefix to avoid raised any exceptions
  var arr = arrSchema.tryParse(['test']);

  print(arr.value); // return the payload (with casting)

  // The Form Helpers (for flutter)

  // the group helper
  var group = GroupValidator(
      {'field1': Validasi.string(), 'field2': Validasi.number()});

  group.validate('field1', 10); // String?(field1 is not a string.)

  // the inline field helper
  FieldValidator(Validasi.string())
      .validate(10); // String?(field is not a string.)
}
0
likes
150
points
99
downloads

Publisher

verified publisheralbetnv.me

Weekly Downloads

An easy to use and flexible validation library for Dart and Flutter. Easily validate your forms input with built-in rules or create your own.

Homepage
Repository (GitHub)
View/report issues

Topics

#validation #form

Documentation

API reference

License

MIT (license)

Dependencies

email_validator, intl, meta

More

Packages that depend on validasi