jajpa / paging_library

A Flutter package for paginating a list view
MIT License
37 stars 7 forks source link

Pagination widget not working in a column #9

Open viratshukla opened 4 years ago

viratshukla commented 4 years ago

Hi, When I tried to use Pagination widget inside a column, then its throwing error. Can anyone provide me some pointer to fix this issue.

viratshukla commented 4 years ago

I fixed it by putting my Pagination widget in ConstrainedBox. So its like - SingleChildScrollView ( Column ( Widget1(), ConstraintBox (Pagination())),)

It has temporarily fixed the problem. For now, I have I have placed maxHeight: MediaQuery.of(context).size.height - 236, for ConstraintBox. Is there any specific method to find remaining height of screen