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 b362cd4 commit 352f89fCopy full SHA for 352f89f
Sources/ArcGISToolkit/Components/Popups/EmbeddedPopupView.swift
@@ -54,9 +54,12 @@ struct EmbeddedPopupView: View {
54
)
55
ProgressView()
56
}
57
- .frame(maxWidth: .infinity)
58
59
+#if targetEnvironment(macCatalyst)
60
+ .frame(maxWidth: .infinity, maxHeight: .infinity)
61
+ .background(Color(.systemBackground))
62
+#endif
63
.preference(key: PresentedPopupPreferenceKey.self, value: .init(popup: popup))
64
.popupViewHeader(title: popup.title)
65
.task(id: ObjectIdentifier(popup)) {
0 commit comments