We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a11d06 commit a82b67dCopy full SHA for a82b67d
HeaderViewer/ImageRuntimeObjectsView.swift
@@ -138,8 +138,10 @@ struct ImageRuntimeObjectsView: View {
138
.buttonStyle(.bordered)
139
}
140
case .loading:
141
- ProgressView()
142
- .scenePadding()
+ StatusView {
+ ProgressView()
143
+ .scenePadding()
144
+ }
145
case .loaded:
146
if viewModel.classNames.isEmpty && viewModel.protocolNames.isEmpty {
147
StatusView {
@@ -183,8 +185,8 @@ private struct StatusView<T: View>: View {
183
185
contents()
184
186
Spacer()
187
188
189
190
.frame(maxHeight: .infinity, alignment: .top)
191
192
0 commit comments