Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down