May 19 2022 Hello world! Welcome to WordPress. This is your first post. Edit or delete it, then start writing! import SwiftUI struct ContentView: View { var body: some View { NavigationView { MenuListView() .edgesIgnoringSafeArea(.bottom) .navigationBarTitle("IKEA") Text("Welcome to Ikea") } .accentColor(Color("Accent")) } } This is the final code