fixes #42 dense empty form field

This commit is contained in:
torbenkeller 2023-08-17 17:01:44 +02:00
parent f0f2dc025d
commit 9ee7a69f5d
3 changed files with 6 additions and 2 deletions

View file

@ -370,7 +370,7 @@ class _InputDropdownState extends State<_InputDropdown> {
),
isEmpty: widget.isEmpty,
child: widget.text == null
? null
? Text('', style: widget.textStyle)
: Text(widget.text!, style: widget.textStyle),
),
),