kizitonwose / Calendar

A highly customizable calendar view and compose library for Android.
MIT License
4.5k stars 492 forks source link

Monthly events lazy load ? #456

Closed jscti closed 1 year ago

jscti commented 1 year ago

Library information:

Question:

Is it possible to lazy load monthly events (for each day of the currently visible month) for the closest months ? Like in a ViewPager. I see 2 loading patterns with your lib :

So Is there a way to lazy load efficiently month by month data ? Thanks

kizitonwose commented 1 year ago

load the monthly events when the currentVisibleMonth changes : but the previous/next transitions shows a FLASH of content because data of the next month has not been lazy loaded before the page shows up.

This is the way to go, but unless your connection is super fast, you won't always finish loading the adjacent month data before the user swipes to it. I'd suggest loading 2 or 3 months ahead to give the requests some time.