Merge pull request #43 from torbenkeller/master
This commit is contained in:
commit
190a5d734b
3 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
# 3.0.6
|
||||||
|
|
||||||
|
- Fixing issue #42 dense empty form field
|
||||||
|
|
||||||
# 3.0.5
|
# 3.0.5
|
||||||
|
|
||||||
- Bumping intl to 0.18.0
|
- Bumping intl to 0.18.0
|
||||||
|
|
|
@ -370,7 +370,7 @@ class _InputDropdownState extends State<_InputDropdown> {
|
||||||
),
|
),
|
||||||
isEmpty: widget.isEmpty,
|
isEmpty: widget.isEmpty,
|
||||||
child: widget.text == null
|
child: widget.text == null
|
||||||
? null
|
? Text('', style: widget.textStyle)
|
||||||
: Text(widget.text!, style: widget.textStyle),
|
: Text(widget.text!, style: widget.textStyle),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: date_field
|
name: date_field
|
||||||
description: A widget in the form of a field that lets people choose a date, a time or both.
|
description: A widget in the form of a field that lets people choose a date, a time or both.
|
||||||
version: 3.0.5
|
version: 3.0.6
|
||||||
homepage: 'https://github.com/GaspardMerten/date_field'
|
homepage: 'https://github.com/GaspardMerten/date_field'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue