Skip to content

Commit c63f9b9

Browse files
committed
refactor: TodoDetail 배경 통일
1 parent 6b5c06f commit c63f9b9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Application/DevLogPresentation/Sources/Common/TodoDetailContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct TodoDetailContentView: View {
1818

1919
var body: some View {
2020
ZStack {
21-
Color(.secondarySystemBackground).ignoresSafeArea()
21+
Color(.systemGroupedBackground).ignoresSafeArea()
2222
ScrollView {
2323
LazyVStack(alignment: .leading, spacing: 10) {
2424
HStack(alignment: .firstTextBaseline, spacing: 8) {

Application/DevLogPresentation/Sources/Home/TodoDetailView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct TodoDetailView: View {
1717

1818
var body: some View {
1919
ZStack {
20-
Color(.secondarySystemBackground).ignoresSafeArea()
20+
Color(.systemGroupedBackground).ignoresSafeArea()
2121
if let todo = viewModel.state.todo, let number = todo.number {
2222
TodoDetailContentView(
2323
title: todo.title,
@@ -55,7 +55,7 @@ struct TodoDetailView: View {
5555
}
5656
}
5757
}
58-
.background(Color(.secondarySystemBackground))
58+
.background(Color(.systemGroupedBackground))
5959
.presentationDragIndicator(.visible)
6060
}
6161
.fullScreenCover(isPresented: Binding(

0 commit comments

Comments
 (0)