File tree Expand file tree Collapse file tree
Application/DevLogPresentation/Sources Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments