Skip to content

Commit 20c0d50

Browse files
committed
fix: 여유 height를 추가함으로서 보이지 않는 현상 해결
1 parent f230d85 commit 20c0d50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DevLog/UI/Home/TodoListView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,10 +303,10 @@ struct TodoListView: View {
303303
GeometryReader { geometry in
304304
Color.clear
305305
.onAppear {
306-
headerHeight = geometry.size.height
306+
headerHeight = geometry.size.height + 1
307307
}
308308
.onChange(of: geometry.size.height) { _, height in
309-
headerHeight = height
309+
headerHeight = height + 1
310310
}
311311
}
312312
}

0 commit comments

Comments
 (0)