import SwiftUI struct SettingsScreen: View { var body: some View { ZStack { // bg Color.Main.backgroundLight .ignoresSafeArea() // content Text("under construction...") // tab bar VStack { Spacer() SharedTabBar() } } } }