Closed gtilson closed 3 years ago
It is not supported yet. But you can put your header and the PaginateFirestore
widget inside a Column
and Wrap the PaginateFirestore
with Expanded
.
Like this,
Column(
children: [
Header(),
Expanded(
child: PaginateFirestore(... )
),
],
)
What about footer ?
Now v1.0.0 supports header and footer with Sliver. Check the example file more details.
If you want a sticky footer use SliverFillRemaining
like this
Thanks for using the package @fluttermobileappdev @gtilson. Feel free to reopen this if you face any similar issues.
Thank you
Is it possible to show the header widget even when no documents are found in the query?