vedartm / paginate_firestore

A flutter package to simplify pagination with firestore data 🗃
https://pub.dev/packages/paginate_firestore
MIT License
113 stars 138 forks source link

Header widget #6

Closed edeuss closed 4 years ago

edeuss commented 4 years ago

widget to show before the list

vedartm commented 4 years ago

@EliasDeuss For now you can use a column to add your header widget like this,

      Column(
        children: [
          Header(),
          Expanded(
            child: PaginateFirestore(),
          )
        ],
      )