@kcathey this issue occurs in the preview for the currently opened file. It's a simple view from the iOS App Dev Tutorial page - Scrumdinger. You can download project files and try it.
View bounds are not shown even for simple view like bellow. I tried both modes - Selectable and Live.
import SwiftUI
struct MeetingView: View {
var body: some View {
VStack {
ProgressView(value: 5, total: 15)
HStack {
VStack(alignment: .leading) {
Text("Seconds Elapsed")
.font(.caption)
Label("300", systemImage: "hourglass.bottomhalf.filled")
}
Spacer()
VStack(alignment: .trailing) {
Text("Seconds Remaining")
.font(.caption)
Label("600", systemImage: "hourglass.tophalf.filled")
}
}
}
.padding()
}
}
struct MeetingView_Previews: PreviewProvider {
static var previews: some View {
MeetingView()
}
}
I will consider the creation of a bug but prefer not to do it because all my reported issues have been untouched for months and it's a waste of time for me to add another bug report then.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: