Vertical scrolling loads list items very slowly

I regularly get feedback from users of my app that lists load very slowly and scrolling in them is a pain. I created a minimal test app to demonstrate the behavior. When scrolling down, you will see that the list gets stuck every time it has to load more items.

In my opinion the loading implementation of bubble is simply bad, it should load more items initially and re-load earlier not only when the user reaches the end of the currently loaded list.

Does anyone have an idea how to work around this? I cannot use a full list by the way, because of several reasons.

Hello @jonas.bergert

A few suggestions:

  • I see 52 entries in the example. This suggests that your lists will be in the hundreds not thousands. You could load the entries to a list custom-state on page load and have the RG source its data from there.
  • Consider changing from vertical scrolling to extended verticall scrolling. This avoids that vertical scroll bar that moves up and up and up when you are scrolling down … accentuating to the user that the load is even slower than it already is.

Hope this helps

1 Like

We really have problem with vertical scroll and ext vertical scroll. Using this last, the scroll position is reset to the top of the list each time new cells are added. The lists become unusable, I have lot of folks complaining as they have to scroll to the bottom again and again. Unusable and of course, not acceptable from a user point of view, and I agree.

HELP please, HEEEEELP !..

Perhaps if you share how the setup is built in your editor I can provide further suggestions.

Below an example of an ext vert rg with 200+ entries using the technique I described before where the content loads on page load … and the rg feeds from a list on the page (a custom state list called notifications):

Screen Recording 2020-12-03 at 12.27.11.72 PM

1 Like

Your method is very interesting @cmarchan, many thanks for the share!

If I am correct, that will clearly avoid latency problem for long list as the contents is already loaded, right? So indeed, we can use full list!

Oh 'o, ok, you’re also using an ext vert scroll rg…

But wh the scroll doesn’t reset to the top in your case?

I never have experienced what you describe in any of my apps.

It’s so strange… I’m going to share a video of what happen…

Better to share your setup in the editor and dB structure.

My app is live…

In am not suggesting to provide access to it. I meant sharing some screenshots of the relevant parts to your inquiries.

This topic was automatically closed after 70 days. New replies are no longer allowed.