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 7bbef09 commit 3c50ecfCopy full SHA for 3c50ecf
WooCommerce/Classes/Environment Keys/SafeAreaInsetsKey.swift
@@ -8,7 +8,10 @@ struct SafeAreaInsetsKey: EnvironmentKey {
8
/// Returns the safe areas of the main window.
9
///
10
static var defaultValue: EdgeInsets {
11
- guard let window = UIApplication.shared.windows.first else {
+
12
+ // Get the first window from all connected scenes
13
+ let scenes = UIApplication.shared.connectedScenes
14
+ guard let window = scenes.compactMap({ $0 as? UIWindowScene }).flatMap({ $0.windows }).first else {
15
return .zero
16
}
17
0 commit comments