We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ad8a0 commit 637df08Copy full SHA for 637df08
2 files changed
DevLog/UI/Common/TodoInfoSheetView.swift
@@ -24,10 +24,10 @@ struct TodoInfoSheetView: View {
24
.foregroundStyle(.white)
25
HStack(spacing: 8) {
26
Image(systemName: "calendar")
27
- .foregroundStyle(.white)
28
Text(createdAt.formatted(date: .abbreviated, time: .omitted))
29
Spacer()
30
}
+ .foregroundStyle(.white)
31
.padding(.vertical, 10)
32
.padding(.horizontal, 12)
33
.background(
DevLog/UI/Home/TodoListView.swift
@@ -248,7 +248,7 @@ struct TodoListView: View {
248
Text("필터 옵션")
249
Image(systemName: "chevron.down")
250
251
- .foregroundStyle(condition ? Color(.label) : .white)
+ .foregroundStyle(condition ? .white : Color(.label))
252
.adaptiveButtonStyle(color: condition ? .blue : .clear)
253
254
0 commit comments