@@ -235,7 +235,7 @@ class InputDateRangePickerState extends State<InputDateRangePicker> {
235235 controller: _startController,
236236 decoration: InputDecoration (
237237 border: inputTheme.border ?? const UnderlineInputBorder (),
238- filled: inputTheme.filled ?? true ,
238+ filled: inputTheme.filled,
239239 hintText: widget.fieldStartHintText ?? localizations.dateHelpText,
240240 labelText: widget.fieldStartLabelText ?? localizations.dateRangeStartLabel,
241241 errorText: _startErrorText,
@@ -251,7 +251,7 @@ class InputDateRangePickerState extends State<InputDateRangePicker> {
251251 controller: _endController,
252252 decoration: InputDecoration (
253253 border: inputTheme.border ?? const UnderlineInputBorder (),
254- filled: inputTheme.filled ?? true ,
254+ filled: inputTheme.filled,
255255 hintText: widget.fieldEndHintText ?? localizations.dateHelpText,
256256 labelText: widget.fieldEndLabelText ?? localizations.dateRangeEndLabel,
257257 errorText: _endErrorText,
0 commit comments