You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stack(
children:<Widget> [
// ...Positioned.fill(
// draws a box with padding at the top and bottom of the screen (see screenshot)
child:LayoutBuilder(
builder(context, constraints) =>Column(
children:<Widget> [
// ... other stuffSizedBox(
height: constraints.maxHeight - sizeOfOtherStuffAbove
child:SearchBar<ContactModel>(
onSearch: (query) => model.search(query),
onItemFound: (contact, _) =>ContactListItem(contact: contact,),
buildSuggestion: (contact, _) =>ContactListItem(contact: contact,),),)
When the suggestions load they looks like this and scroll correctly at first:
But then when scrolling it looks like this:
The text was updated successfully, but these errors were encountered:
My widget tree looks like this:
When the suggestions load they looks like this and scroll correctly at first:
But then when scrolling it looks like this:
The text was updated successfully, but these errors were encountered: