Skip to content

Commit eb4a951

Browse files
committed
refactor: PushNotificationList 배경 통일
1 parent 43a2d3c commit eb4a951

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Application/DevLogPresentation/Sources/PushNotification/PushNotificationListView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ struct PushNotificationListView: View {
2525
var body: some View {
2626
NavigationStack {
2727
notificationList
28-
.background(NavigationBarConfigurator(.secondarySystemBackground, alwaysVisible: true))
28+
.background(NavigationBarConfigurator(alwaysVisible: true))
2929
.onScrollOffsetChange { offset in
3030
guard isScrollTrackingEnabled else { return }
3131
headerOffset = max(0, -offset)
@@ -35,7 +35,7 @@ struct PushNotificationListView: View {
3535
.navigationTitle(String(localized: "nav_push_notifications"))
3636
.listStyle(.plain)
3737
}
38-
.background(Color(.secondarySystemBackground).ignoresSafeArea())
38+
.background(Color(.systemGroupedBackground).ignoresSafeArea())
3939
.alert(
4040
"",
4141
isPresented: Binding(
@@ -75,7 +75,7 @@ struct PushNotificationListView: View {
7575
}
7676
}
7777
}
78-
.background(Color(.secondarySystemBackground))
78+
.background(Color(.systemGroupedBackground))
7979
.presentationDragIndicator(.visible)
8080
}
8181
.overlay {
@@ -167,7 +167,7 @@ struct PushNotificationListView: View {
167167
if #available(iOS 26.0, *) {
168168
Color.clear
169169
} else {
170-
Color(.secondarySystemBackground)
170+
Color(.systemGroupedBackground)
171171
}
172172
}
173173
.offset(y: headerOffset)

0 commit comments

Comments
 (0)