diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b20654..3636e0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.19.0 - 03/06/2025 + +- **Changes** + - Added `showSearchField` parameter to show/hide the search field widget [PR#144](https://github.com/koukibadr/Searchable-Listview/pull/144) [ISSUE#74](https://github.com/koukibadr/Searchable-Listview/issues/74) +- **Bug Fix** + - Fix filtred list rendering when using SearchableListView in a bottom sheet modal [PR#143](https://github.com/koukibadr/Searchable-Listview/pull/143) [ISSUE#140](https://github.com/koukibadr/Searchable-Listview/issues/140) + ## 2.18.0 - 31/05/2025 - **Changes** diff --git a/README.md b/README.md index df9854a..c65e2e2 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In order to add searchable listview package to your project add this line to you ```yaml dependencies: - searchable_listview: ^2.18.0 + searchable_listview: ^2.19.0 ``` ## Attributes @@ -267,8 +267,9 @@ dependencies: /// this text is displayed only when [inputDecoration] is null. final String? labelText; -` - + /// Indicates whether the search field will be displayed or not + /// by default `showSearchField = true` + final bool showSearchField; ```` ## Implementation diff --git a/pubspec.yaml b/pubspec.yaml index 3f1baf7..67127e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: searchable_listview description: A new easy way to filter listview with simple implementation with possibilty to customize search field and empty widget -version: 2.18.0 +version: 2.19.0 homepage: 'https://github.com/koukibadr/Searchable-Listview' environment: sdk: '>=2.12.0 <4.0.0'