Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
2.6.2 source code.tar.gz | 2025-01-19 | 1.2 MB | |
2.6.2 source code.zip | 2025-01-19 | 1.4 MB | |
README.md | 2025-01-19 | 1.0 kB | |
Totals: 3 Items | 2.6 MB | 0 |
View:
- Allow overriding
calculateExtraLayoutSpace
in the layout manager. - Minimum SDK version is now 21 due to a bump in
RecyclerView
version.
Compose:
The following methods are now available in the compose module:
Month calendar:
scrollToDate
scrollToDay
animateScrollToDate
animateScrollToDay
Week calendar:
scrollToDate
scrollToDay
animateScrollToDate
animateScrollToDay
Year calendar:
scrollToDate
scrollToDay
scrollToMonth
animateScrollToDate
animateScrollToDay
animateScrollToMonth
Note that unlike the view system (RecyclerView
) which allows offset calculation when the scroll target index becomes visible on the screen, compose (LazyList
) requires you to provide the desired scroll offset for the target index before initiating the scroll. Therefore, the current implementation assumes equal-sized headers in each item to be able to calculate the day offset in the target index.