Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vertical layout crash for large day ranges #251

Merged
merged 1 commit into from
Aug 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Sources/Public/CalendarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1077,10 +1077,17 @@ extension CalendarView: WidthDependentIntrinsicContentHeightProviding {
// for more details about why this is needed and how it works.
func intrinsicContentSize(forHorizontallyInsetWidth width: CGFloat) -> CGSize {
let calendarWidth = width + layoutMargins.left + layoutMargins.right
let calendarHeight: CGFloat
if content.monthsLayout.isHorizontal {
calendarHeight = .maxLayoutValue
} else {
calendarHeight = bounds.height
}

let visibleItemsProvider = VisibleItemsProvider(
calendar: calendar,
content: content,
size: CGSize(width: calendarWidth, height: .maxLayoutValue),
size: CGSize(width: calendarWidth, height: calendarHeight),
layoutMargins: directionalLayoutMargins,
scale: scale,
monthHeaderHeight: monthHeaderHeight(calendarWidth: calendarWidth),
Expand Down
Loading