0.1.0+2: Update description

This commit is contained in:
reidha 2020-04-22 22:38:03 +07:00
parent 9f1bcc91c6
commit 89f9b8fa95
5 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,7 @@
## [0.1.0+2] - April 22, 2020
* Update description
## [0.1.0+1] - April 12, 2020 ## [0.1.0+1] - April 12, 2020
* Add example directory * Add example directory

View file

@ -42,7 +42,7 @@ packages:
path: ".." path: ".."
relative: true relative: true
source: path source: path
version: "0.1.0" version: "0.1.0+2"
collection: collection:
dependency: transitive dependency: transitive
description: description:

View file

@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
/// Use Icon as checkbox
class CheckboxIconFormField extends FormField<bool> { class CheckboxIconFormField extends FormField<bool> {
CheckboxIconFormField({ CheckboxIconFormField({
Key key, Key key,

View file

@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
/// Use CheckboxListTile as part of Form
class CheckboxListTileFormField extends FormField<bool> { class CheckboxListTileFormField extends FormField<bool> {
CheckboxListTileFormField({ CheckboxListTileFormField({
Key key, Key key,

View file

@ -1,6 +1,6 @@
name: checkbox_formfield name: checkbox_formfield
description: A few kinds of checkbox that can be used as FormField description: This package contains checkbox widgets that can be used as FormField. As of April 2020, Flutter does not provide easy-to-use checkbox FormField to developers, so this package instead can provide a simple way to implement checkbox FormField. This package is especially for Flutter beginners who are not familiar with FormField or are not sure how to do “extends FormField” to make arbitrary widgets become FormField.
version: 0.1.0+1 version: 0.1.0+2
homepage: https://reidha.github.io/ homepage: https://reidha.github.io/
repository: https://github.com/reidha/checkbox_formfield repository: https://github.com/reidha/checkbox_formfield