I currently have a “home feed” of events (listed from oldest to newest). I’d like to split these up into days, so the user could see Today’s Events, Tomorrow, 7th July, 8th July etc etc with a header splitting up these. For example:
Yeah- you just have several copies of the same list of events each one filtered accordingly.
So:
Today
[(list of events) where date = today]
Yesterday
[(list of events) where date = yesterday]
etc.
If you’re feeling clever you can make the days a list too. So you would have a list of days, each of which contains a list of events filtered on that day.