0 purchases
easy auto form
Mission #
The mission of this package is to provide a simple simple simple way to generate forms based on a given entity.
Sometimes you just want to generate a form based on a given entity, and you don't want to write a lot of code to do it (like validation, initial values, controllers, ecc).
This package aims to make that process as simple as possible.
Hope you enjoy it!
Introduction #
A widget that generates a form based on a given entity.
The EasyAutoForm widget is designed to work with any entity that is represented as a Map<String, dynamic>.
This means that it can be used with a wide variety of data types, including but not limited to:
User profiles
Product listings
Blog posts
Contact information
Survey responses
The EasyAutoForm widget will generate input fields for each key in the entity map, and will automatically determine the appropriate input type based on the value type.
Features #
Supports a variety of entity types, including user profiles, product listings, blog posts, contact information, and survey responses.
Includes options to ignore specific fields, override input decoration for different data types, and handle form submission and cancellation.
Getting started #
Add the dependency to your pubspec.yaml file:
dependencies:
easy_auto_form: ^latest
copied to clipboard
Install it
You can install packages from the command line:
$ flutter pub get
copied to clipboard
Import it
Now in your Dart code, you can use:
import 'package:easy_auto_form/easy_auto_form.dart';
copied to clipboard
Usage #
The EasyAutoForm widget is designed to work with any entity that is represented as a Map<String, dynamic>.
This means that it can be used with a wide variety of data types, including but not limited to:
User profiles
Product listings
Blog posts
Contact information
Survey responses
The EasyAutoForm widget will generate input fields for each key in the entity map, and will automatically determine the appropriate input type based on the value type.
import 'package:easy_auto_form/easy_auto_form.dart';
class User {
String name;
String email;
String password;
User({this.name, this.email, this.password});
Map<String, dynamic> toMap() {
return {
'name': name,
'email': email,
'password': password,
};
}
}
final user = User(name: 'John Doe', email: '[email protected]', password '123456');
EasyAutoForm(
entity: user.toMap(),
onSaved: (entity) {
// Do something with the entity
},
onCancel: () {
// Do something when the form is cancelled
},
fieldsSettings: {
settings: [
FieldSetting(
inputType: FieldInputType.autocomplete,
autocompleteSource: AutocompleteSource(
source: () async => ['John Doe', 'Jane Doe'],
),
),
// Other settings
],
},
);
copied to clipboard
Additional information #
Input types #
String values will be rendered as TextFormFields.
bool values will be rendered as Checkboxes.
int and double values will be rendered as TextFormFields with keyboardType set to TextInputType.number.
DateTime values will be rendered as DateTimeFields.
List values will be rendered according to their FieldSetting (select or autocomplete).
Examples #
For more examples of how to use easy_auto_form, check out the example directory in the package source code.
Contributing #
If you find a bug or have a feature request, please open an issue on the easy_auto_form GitHub repository. If you'd like to contribute code, please submit a pull request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.