Hi everyone I am trying to display safari view as full screen modal using ZStack
ZStack
{
HStack
{
VStack
{
Safari(url: url)
}
}
}
.edgesIgnoringSafeArea(.all)
.offset(x: 0, y: self.modalPresented ? 0 : 5000)
But the output I get is a white empty view. And also the navigation bar is still visible. Can someone please help me explain what is going on? https://i.stack.imgur.com/Qqd64.jpg