> For the complete documentation index, see [llms.txt](https://docs.appkickstarter.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appkickstarter.com/tutorials/make-an-infinite-list-with-pagination.md).

# Make an infinite list with pagination

Look at the example in PostsScreen and PostsScreenModel.&#x20;

PostsScreen loads and displays an infinite list of posts fetched with pagination.&#x20;

```
PostsLoaded(
    state.posts,
    fetchingNewPage = state.fetchingNewPage,
    newPage = { screenModel.newPage() }
)
```
