this post was submitted on 12 Jun 2023
10 points (91.7% liked)

Jerboa

10221 readers
3 users here now

Jerboa is a native-android client for Lemmy, built using the native android framework, Jetpack Compose.

Warning: You can submit issues, but between Lemmy and lemmy-ui, I probably won't have too much time to work on them. Learn jetpack compose like I did if you want to help make this app better.

Built With

Features

Installation / Releases

Support / Donate

Jerboa is made by Lemmy's developers, and is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project.

Crypto

Contact

founded 2 years ago
MODERATORS
 

Is there any option to add scroll momentum and/or increase speed? Scrolling feels just a little "stuck" compared to other apps.

top 5 comments
sorted by: hot top controversial new old
[–] yoevli@lemmy.ml 4 points 1 year ago (2 children)

Scroll momentum seems to work on my end, although I'm brand new to the app so it's possible it was added in the latest 0.33 release maybe?

[–] misterundercoat@lemmy.world 3 points 1 year ago

There is some momentum but it seems very weak compared to, say, RIF or Firefox. I think the app would feel nicer if scrolling deep pages was a little easier.

[–] Kamelo@lemmy.world 2 points 1 year ago

I'm on .33 and agree with OP scrolling feels a little stuttery and stops abruptly when my finger comes up. I have a low end phone from last year, but text and images never give me any issues even with a full cache.

[–] Debs@lemmy.ml 1 points 1 year ago

I agree that the scrolling feels a bit "stiff". It also seems to only load a few posts at a time. This causes the app to hit the bottom of the page and then load more. It makes things feel a little off.

[–] cxx@lemmy.world 1 points 1 year ago

Mobile dev here: the problem seems to be low and inconsistent framerate, i.e. "jank", which messes up the scroll timings and results in weird scroll speed and momentum.

To my eye it looks like the app is doing too much work while generating each element in the list - posts, comments, etc. This is common during early development phases when you're trying to get thing in first, and then address the performance bottlenecks.