Skip to content

Commit

Permalink
[Feature/#346] 웹뷰 safearea top ingore 처리 (#347)
Browse files Browse the repository at this point in the history
* feat: BottleArrivalDetailView ignoreSafeArea top 추가

* feat: SentBottleDetailView ignoreSafeArea top 추가
  • Loading branch information
leemhyungyu authored Nov 7, 2024
1 parent 1fb142e commit a062fdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public struct BottleArrivalDetailView: View {
}
)
.navigationBarBackButtonHidden()
.ignoresSafeArea(.all, edges: .bottom)
.ignoresSafeArea(.all, edges: [.top, .bottom])
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public struct SentBottleDetailView: View {
}
)
.navigationBarBackButtonHidden()
.ignoresSafeArea(.all, edges: .bottom)
.ignoresSafeArea(.all, edges: [.top, .bottom])
}
}
}

0 comments on commit a062fdf

Please sign in to comment.