maheshj01 / searchfield

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

Closed franzlst closed 2 months ago

franzlst commented 2 months ago

Describe the bug

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.

maheshj01 commented 2 months ago

Fixed and released in searchfield: ^1.1.2

maheshj01 commented 2 months ago

edit fixed in searchfield: ^1.1.3

franzlst commented 2 months ago

Thank you!