Skip to content

Commit a70d3ea

Browse files
committed
fix: iOS 18 이하 버전에서 safeArea 부분의 배경색 수정
1 parent 27a8400 commit a70d3ea

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

Application/DevLogPresentation/Sources/Home/TodoListView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ struct TodoListView: View {
116116
}
117117
}
118118
.background(NavigationBarConfigurator())
119+
.background(Color(.systemGroupedBackground))
119120
.task { viewModel.send(.onAppear) }
120121
}
121122

Application/DevLogPresentation/Sources/PushNotification/PushNotificationListView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ struct PushNotificationListView: View {
2525
var body: some View {
2626
NavigationStack {
2727
notificationList
28+
.background(Color(.systemGroupedBackground))
2829
.background(NavigationBarConfigurator(alwaysVisible: true))
2930
.onScrollOffsetChange { offset in
3031
guard isScrollTrackingEnabled else { return }

0 commit comments

Comments
 (0)