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