Skip to content

πŸ‘©πŸ»β€πŸ’» πŸ§‘πŸ½β€πŸ’» Subscribe and Read us on Substack to Get Full Access to Our Posts


How to hide status bar in SwiftUI

To Hide Status Bar in SwiftUI implement this:

var body: some View {
        .edgesIgnoringSafeArea(.all) 
        .statusBar(hidden: true)
    } 
Back To Top
Search