Dynamic load data on Srcolling With list of TWO columns

I use ion-infinite-scroll with lists of one column to load more data as scrolling, but if I want two columns structure I use row with two coumns. But in this case how I can load more data when scrolling, is there any other structure I can use which make two columns.I used detect bottom as follows
const scrollElement = await this.content.getScrollElement(); // get scroll element
// calculate if max bottom was reached
if (
scrollElement.scrollTop ===
scrollElement.scrollHeight - scrollElement.clientHeight
) …
but it is not so practical … So please Help Me :slight_smile:

1 Like