simonalveteg / Workout-Tracker

A Workout Tracker for Android written with Jetpack Compose using MVVM architecture, a room database and dependency injection with dagger hilt.
23 stars 1 forks source link

Display year for sessions that are from another year #20

Open simonalveteg opened 1 year ago

simonalveteg commented 1 year ago

In order to easily see which sessions are from where the year could be displayed to the left of the date

simonalveteg commented 1 year ago

Use groupBy to group sessions by year and then for each group display a stickyHeader with the year (except for current year?) and the corresponding sessions as items. Should be easy to implement.