How do I include both objects into the same forEach, or display them by the timestamp order of both
ForEach(viewModel.bookPosts) { bookpost in BookPostRowView(bookpost: bookpost) } ForEach(viewModel.posts(forFilter: self.selectedFilter)) { post in PostRowView(post: post) } both of them have an order of timestamp, but with this code the book posts are all displayed on top of the postrow, as obvious. I need them to display in the said order but not giving priority to any […]