I have two tabs: "Main" and "Friends". Friends has a list of people, I can click on person to navigate to their profile.
I want to accomplish two things:
- Navigating to profile of friend "Mark" from "Main" tab.
- Get back to "Main" tab on back button press.
I have accomplished #1, however there is no animation transition. Not sure how to accomplish #2.
enum Tab {
case home, friends
}
struct ContentView: View {
@State var tab: Tab = .home
@State var selectedFriend: String?
@State var friends: [String] = ["Mark", "Spencer"]
var body: some View {
TabView(selection: $tab) {
NavigationView {
VStack {
Button("You have a new friend Mark! Click to see his profile.") {
tab = .friends
selectedFriend = "Mark"
}
}
}
.tabItem {
Label("Home", systemImage: "list.bullet")
}
.tag(Tab.home)
NavigationView {
FriendsList(selected: $selectedFriend, friends: friends)
}
.tabItem {
Label("Friends", systemImage: "list.bullet")
}
.tag(Tab.friends)
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
struct FriendsList: View {
@Binding var selected: String?
var friends: [String]
var body: some View {
VStack {
ForEach(friends, id:\.self) { friend in
NavigationLink(destination: FriendDetails(name: friend), tag: friend, selection: $selected) { EmptyView() }
}
List {
ForEach(friends, id:\.self) {friend in
Button(friend) {
self.selected = friend
}
}
}
}
}
}
struct FriendDetails: View {
var name: String
var body: some View {
Text("details of \(name)")
}
}
This works for me. Added
.listStyle(PlainListStyle())
to remove the padding (in my opinion it looks better)