can’t get my navbar to the top, keeps having a space above or stretches
import SwiftUI struct UtilitySelectionView: View { var body: some View { NavigationView { GeometryReader { geometry in VStack(spacing: 0) { // Black color for the safe area Color.black .frame(height: geometry.safeAreaInsets.top) // Background color for safe area .edgesIgnoringSafeArea(.top) // Header/Navbar HStack { Button(action: { // Action for menu button }) { Image(systemName: “line.horizontal.3”) .resizable() .frame(width: 25, […]