Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

vantageoy/schemani_formini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

schemani_formini

A bridge validator class for validating formini values using schemas built with schemani. #roadmap

Please note that the schemani/formini packages are under development. There are still some issues to resolve before this has any help for real use cases.

Installation

schemani and formini packages are required to be installed along with this package.

Usage

import 'package:formini/formini.dart';
import 'package:schemani/schemani.dart';
import 'package:schemani_formini/schemani_formini.dart';

class LoginForm extends StatelessWidget {
  /// The schema for validating the form values.
  static const schema = MapSchema({
    'email': [Required(), Email()],
    'password': [Required()],
  });
  
  @override
  Widget build(BuildContext context) {
    return Formini(
      validator: const ForminiSchemaniValidator(schema),
      initialValues: const {'email': 'foo'},
      onSubmit: _authenticate,
      child: Column(children: [
        // ...
      ]),
    );
  }
}

Customization

The ForminiSchemaniValidator class is very simple. Just go and grab it into your project if you need something special.

API reference

https://pub.dev/documentation/schemani_formini

Contributing

Please open an issue or pull request in GitHub. Any help and feedback is much appreciated.

Licence

MIT

Roadmap

  • Run tests really against formini