Skip to content

Commit cf874d8

Browse files
committed
Fixed README - Buy a coffee link, shortened description
1 parent 3447a8b commit cf874d8

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
This package helps in generation of forms in [Flutter](https://flutter.io/) by providing the syntactic sugar for creating a Form Widget and reduce the boilerplate needed to build a form, validate fields, react to changes, and collect the value of the Form in the form of a map.
44

5-
The package also comes with common validation functions that can be easily composable to enforce the DRY Principle in code-base.
6-
75
## Simple Usage
86
To use this plugin, add `flutter_form_builder` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
97

@@ -17,7 +15,6 @@ final GlobalKey<FormBuilderState> _fbKey = GlobalKey<FormBuilderState>();
1715
Column(
1816
children: <Widget>[
1917
FormBuilder(
20-
context,
2118
key: _fbKey,
2219
autovalidate: true,
2320
child: Column(
@@ -323,6 +320,6 @@ Form's `reset()` doesn't clear SignaturePad - You'll be forced to clear manually
323320
## Support
324321
If this package was helpful to you in delivering on your project or you just wanna to support this project, a cup of coffee would be highly appreciated ;-)
325322

326-
[<img src="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png">](https://buymeacoff.ee/wb5M9y2Sz)
323+
[![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png)](https://buymeacoff.ee/wb5M9y2Sz)
327324

328325

example/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ A new Flutter project.
66

77
```
88
FormBuilder(
9-
context,
109
autovalidate: true,
1110
controls: [
1211
FormBuilderInput.textField(

0 commit comments

Comments
 (0)