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.
2 parents f21fd77 + f16d366 commit ddd689eCopy full SHA for ddd689e
ShareExtension/ShareConfirmationViewController.swift
@@ -72,7 +72,10 @@ import MBProgressHUD
72
73
private lazy var sharingIndicatorView: UIActivityIndicatorView = {
74
let indicator = UIActivityIndicatorView()
75
- indicator.color = NCAppBranding.themeTextColor()
+
76
+ if #unavailable(iOS 26.0) {
77
+ indicator.color = NCAppBranding.themeTextColor()
78
+ }
79
80
return indicator
81
}()
@@ -207,6 +210,8 @@ import MBProgressHUD
207
210
textView.font = .preferredFont(forTextStyle: .body)
208
211
textView.translatesAutoresizingMaskIntoConstraints = false
209
212
textView.isHidden = true
213
+ textView.backgroundColor = .secondarySystemBackground
214
+ textView.layer.cornerRadius = 8
215
return textView
216
217
0 commit comments