A highly customizable simple and easy to use flutter Widget to add a searchfield to your Flutter Application.This Widget allows you to search and select from list of suggestions.
MIT License
84
stars
63
forks
source link
SearchInputDecoration should overwrite copyWith #175
The newly introduced class SearchInputDecoration subclasses InputDecoration, but does not overwrite the method copyWith. Therefore, it is not possibly to call copyWith on a SearchInputDecoration object and assign it to the searchInputDecoration parameter, as copyWith returns an InputDecoration.
Describe the bug
The newly introduced class
SearchInputDecoration
subclassesInputDecoration
, but does not overwrite the methodcopyWith
. Therefore, it is not possibly to callcopyWith
on aSearchInputDecoration
object and assign it to thesearchInputDecoration
parameter, ascopyWith
returns anInputDecoration
.