mirror of
https://github.com/samsonjs/AccessibilityTalk.git
synced 2026-04-27 15:07:47 +00:00
Wrap bad calendar grid in a scroll view
This commit is contained in:
parent
d8541845d4
commit
3d6b05f0e1
1 changed files with 7 additions and 5 deletions
|
|
@ -9,6 +9,7 @@ import SwiftUI
|
|||
|
||||
struct CalendarBadView: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
LazyVGrid(columns: gridColumns, spacing: 0) {
|
||||
Group {
|
||||
BadDayView()
|
||||
|
|
@ -19,6 +20,7 @@ struct CalendarBadView: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private var gridColumns: [GridItem] {
|
||||
let item = GridItem(.flexible(), spacing: 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue