mirror of
https://github.com/samsonjs/AccessibilityTalk.git
synced 2026-03-25 09:25:52 +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 {
|
||||
var body: some View {
|
||||
LazyVGrid(columns: gridColumns, spacing: 0) {
|
||||
Group {
|
||||
BadDayView()
|
||||
ScrollView {
|
||||
LazyVGrid(columns: gridColumns, spacing: 0) {
|
||||
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