Kizito Nwose

Results 87 comments of Kizito Nwose

I have no idea why this would happen because the sample project looks line. Can you share a minimal sample project where I can reproduce the issue?

I will close this, feel free to reopen it if you have more questions.

This is a bit tricky but you'll need to override the internal layout manager and override `calculateExtraLayoutSpace`. See [documentation](https://android.googlesource.com/platform/frameworks/support/+/refs/heads/androidx-main/recyclerview/recyclerview/src/main/java/androidx/recyclerview/widget/LinearLayoutManager.java?source=post_page---------------------------%2F&autodive=0%2F#559)

Are you sure it is the calendar calling those methods multiple times or something in your code triggering recomposition? Also, keep in mind that the months adjacent to the currently...

This is not available in the view module. But you can wrap the composable in a [ComposeView](https://developer.android.com/reference/kotlin/androidx/compose/ui/platform/ComposeView) and use it like any other view.

You will need to do some conversion with an external library, as this feature is not built into the `java.time` package. See [this](https://stackoverflow.com/a/49163559)

The same way as the range, just replace the initial section when another date is selected instead of keeping a list. See compose example 3

Compose 1.7.0-beta01 support is now available in version [2.6.0-beta01](https://github.com/kizitonwose/Calendar/releases/tag/2.6.0-beta01)

I assume you need the same logic used [here](https://github.com/kizitonwose/Calendar/blob/main/docs/View.md#week-view), except you hide the entire month and set the click listener on the month header. See the sample app for how...