Updated for Xcode 11 Beta3

This commit is contained in:
John Holdsworth
2019-07-08 11:08:29 +01:00
parent 03ac6281a1
commit 17a2f3b196
35 changed files with 207 additions and 88 deletions

View File

@@ -24,7 +24,7 @@ struct UsersListView : View {
}
Section {
ForEach(state.usersState.users) {user in
NavigationButton(destination: UserDetailView(userId: user.id)) {
NavigationLink(destination: UserDetailView(userId: user.id)) {
UserRow(user: user)
}
}