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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.19.3 - 30/07/2025

- **Bug Fix**
- Fix exapnsible controller compatbility and build errors [Issue#154](https://github.com/koukibadr/Searchable-Listview/issues/154)

## 2.19.2 - 23/07/2025

- **Bug Fix**
Expand Down
2 changes: 1 addition & 1 deletion 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.19.2
searchable_listview: ^2.19.3
```

## Attributes
Expand Down
3 changes: 3 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
analyzer:
errors:
deprecated_member_use: ignore
include: package:flutter_lints/flutter.yaml
linter:
rules:
Expand Down
4 changes: 2 additions & 2 deletions lib/searchable_listview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ class _SearchableListState<T> extends State<SearchableList<T>> {
List<T> filtredAsyncListResult = [];
String searchText = '';
bool dataDownloaded = false;
List<ExpansibleController> expansionTileControllers = [];
List<ExpansionTileController> expansionTileControllers = [];

@override
void initState() {
Expand Down Expand Up @@ -658,7 +658,7 @@ class _SearchableListState<T> extends State<SearchableList<T>> {
expansionTileControllers.addAll(
List.generate(
widget.expansionListData.length,
(e) => ExpansibleController(),
(e) => ExpansionTileController(),
),
);
if (widget.hideEmptyExpansionItems) {
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.19.2
version: 2.19.3
homepage: 'https://github.com/koukibadr/Searchable-Listview'
environment:
sdk: '>=2.12.0 <4.0.0'
Expand Down