Skip to content

Commit

Permalink
Include the height of the scroll indicator which has been pushed belo…
Browse files Browse the repository at this point in the history
…w the content.
  • Loading branch information
dfeinzimer committed Nov 16, 2024
1 parent 8486438 commit 68aedc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ArcGISToolkit/Utility/Carousel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ struct Carousel<Content: View>: View {
}
}
// When a GeometryReader is within a List, height must be specified.
.frame(height: cellSize.height)
.frame(height: cellSize.height + scrollIndicatorOffset)
}

@available(iOS 18.0, *)
Expand Down

0 comments on commit 68aedc1

Please sign in to comment.