In these blocks there is a variable called number. We will store a number in that variable that will be updated after creating items.
There is another variable called items. That variable will represent how much data do you want to show at a time. In my case I am showing 20 list items at the first place So i set it to 20.
Note : If you want to change number of items that you want to show at a time, change that variable as well as the number variable
But this is not recycler view! This is “Load more items” feature.
Recycler view is totally different from normal and dynamic list view.
Here you are loading more items when scroll reached at bottom. But in case of recycler view it only creates a view of suppose your phone screen size and recycles the views according to the user need.
Means, if you are showing 10 list items at starting and further load more items by creating more list items with views, but in recycler view it only creates suppose 10 views or 10 list items and it just replace the list items with new one when user load more items. It does not create more views to show list items, it recycles the existing views and show loaded items in it.
This is how recycler view works. It is not possible within Kodular but possible with extension.
For more clarification search YouTube.
Your guide is also useful for loading more items according to user need.