I’m trying to recreate the design of the Google calendar app.
When you open the application, the agenda is displayed vertically. You can scroll indefinitely in the future as well as in the past.
Dates are organized in weeks, where only days with events are displayed.
And I would like to scroll automatically to the current date when the page is loaded.
Do you have any idea how to do this on bubble ?
I’m not looking to connect to the Google calendar, it’s really a design question.
Yep essentially just a repeating group with a list of events in it, 1 column and infinite rows.
Now, you could technically load all the entries and then scroll to todays date, but it would be hella slow at scale.
Instead have 2 groups, one for today+ future, and one for past events, past events would be on the top and in reverse scroll order, future on the bottom, normal scroll order, that way you can go up and down.
You’ll need to tweak it here and there to make it play nice, but thats the general approach I would make
Thank you very much, that’s a good start… The only problem is that it will only display existing events, whereas the google calendar displays weeks, and shows days only if there’s an event.