Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion DevLog/UI/Home/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ struct HomeView: View {
ForEach(viewModel.state.recentTodos, id: \.id) { todo in
NavigationLink(value: Path.detail(todo.id)) {
RecentTodoRow(todo: todo, sceneWidth: sceneWidth)
.padding(.vertical, -4)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

.padding(.vertical, -4)를 제거하여 List의 기본 패딩을 사용하도록 수정하셨습니다. 이 변경으로 인해 RecentTodoRow와 시각적으로 유사한 TodoItemRow(.padding(.vertical, 12) 사용) 간의 UI 일관성이 부족해질 수 있습니다. RecentTodoRow 자체에 수직 패딩을 추가하여 일관성을 확보하고 뷰의 책임을 명확히 하는 것을 고려해 보세요. 예를 들어, RecentTodoRow의 최상위 HStack.padding(.vertical, 8)과 같이 적절한 패딩을 추가할 수 있습니다.

}
}
}
Expand Down