Want to bring widgets to your SwiftUI app but not sure where to begin? This…
How to hide status bar in SwiftUI
To Hide Status Bar in SwiftUI implement this:
var body: some View {
.edgesIgnoringSafeArea(.all)
.statusBar(hidden: true)
}
