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,13 +9,15 @@ import SwiftUI
|
||||||
|
|
||||||
struct CalendarBadView: View {
|
struct CalendarBadView: View {
|
||||||
var body: some View {
|
var body: some View {
|
||||||
LazyVGrid(columns: gridColumns, spacing: 0) {
|
ScrollView {
|
||||||
Group {
|
LazyVGrid(columns: gridColumns, spacing: 0) {
|
||||||
BadDayView()
|
Group {
|
||||||
|
BadDayView()
|
||||||
|
|
||||||
BadDayView(state: DayState(hasJournal: false, snippetCount: 1))
|
BadDayView(state: DayState(hasJournal: false, snippetCount: 1))
|
||||||
|
|
||||||
BadDayView(state: DayState(hasJournal: true, snippetCount: 2))
|
BadDayView(state: DayState(hasJournal: true, snippetCount: 2))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue