This commit is contained in:
Christien Rioux 2023-09-21 21:00:58 -04:00
parent e369d6091a
commit 4ddfbe7746
20 changed files with 150 additions and 189 deletions

View file

@ -50,7 +50,7 @@ class ContactListWidget extends ConsumerWidget {
: SearchableList<proto.Contact>(
autoFocusOnSearch: false,
initialList: contactList.toList(),
builder: (contact) => ContactItemWidget(contact: contact),
builder: (l, i, c) => ContactItemWidget(contact: c),
filter: (value) {
final lowerValue = value.toLowerCase();
return contactList