I'm fetching data froma remove endpoint. Data response only contains total item count but no total page. How can I calculate total pages given that I only have total item count and per page item count? I need this because I'm trying to setup paging library
for example:
perPage = 10
totalItemCount = 10
totalPages = 1
The idea is totalItemCount is greater than 10 + 1 but lower than or equal 20, totalPages would be 2; And totalItemCount > 10 + 10 + 1 but lower than or equal 30, totalPages = 3 and so on...
I couldn't make a good algo to calculate this using Kotlin
This seems to work. I have tried it in https://pl.kotl.in/hUDoamkG3:
It yields the following output: