kizitonwose / Calendar

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

some suggest #553

Closed k849717776 closed 5 days ago

k849717776 commented 2 weeks ago

about rememberCalendarState, some time I need scrollProcess, like float, percent。but it only has isScrollInProgress。 it means i want to do some operation when it scorll maybe 30% 50% 70%。that like CalendarState's visibleItemState or internal listState but i can't use it

kizitonwose commented 2 weeks ago

The two properties of the LazyListState firstVisibleItemIndex and firstVisibleItemScrollOffset can be read from the calendar state:

firstVisibleItemIndex => state.layoutInfo.visibleItemsInfo.firstOrNull()?.index ?: 0

firstVisibleItemScrollOffset => state.layoutInfo.visibleItemsInfo.firstOrNull()?.offset ?: 0

k849717776 commented 1 week ago

thanks