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