Create a new SwiftUI file called ProfileView.
In the ProfileView file, create a basic view with the necessary elements for the user profile. For example, you may want to include an image view for the user's profile picture and a text view for their name and bio.
In the NavigationView of the main view, add a NavigationLink to the profile icon image with the destination parameter set to the ProfileView:
NavigationView {
VStack {
// content of main view
NavigationLink(destination: ProfileView()) {
Image(systemName: "person.circle")
.font(.largeTitle)
.foregroundColor(.primary)
}
}
}
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2021-08-25 11:00:00 +0000
Seen: 6 times
Last updated: Nov 05 '22
How to add a custom button in SwiftUI for iOS13 that enables going back between screens?
How can the update of properties from both ParentViewModel and ChildViewModel in SwiftUI be solved?
Can SwiftUI be utilized to restrict the touch region for a drag gesture?
How can the color of a selected element (Picker) be modified in SwiftUI for WatchOS?
How to make a calendar layout that is horizontal using Swiftui?
What is the process to add a radio button with a check mark on a TableView cell using Swift?
How to limit UITextField input to only accept numerical values?