Also, adding the following does not work:
NavigationLink(destination: EmptyView()) {
EmptyView()
}
Post
Replies
Boosts
Views
Activity
I'm experiencing the same issue. It is semi-random. It would appear to be a a SwiftUI bug as I can reproduce it in a variety of applications, with and without stacks, etc.
imgur.com/mfNcqDt
I have had success with the following native implementation from SwiftUI Lab: https://gist.github.com/swiftui-lab/3de557a513fbdb2d8fced41e40347e01
A few modifications had to be made including changes to use the new ProgressView etc.
Running into a similar problem, if a value changes the entire text for the particular key value pair disappears:
ForEach(viewCounts.sorted(by: <), id: \.key) { key, value in
		Text("\(key) \(value)")
}
It looks to be working though it can take up to several minutes for the content to display.