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 4635e4d commit 7c48267Copy full SHA for 7c48267
NextcloudTalk/BarButtonItemWithActivity.swift
@@ -10,7 +10,13 @@ class BarButtonItemWithActivity: UIBarButtonItem {
10
var innerButton = UIButton()
11
var activityIndicator = UIActivityIndicatorView()
12
13
- lazy var textColor: UIColor = NCAppBranding.themeTextColor()
+ var textColor: UIColor {
14
+ if #available(iOS 26.0, *) {
15
+ return .label
16
+ } else {
17
+ return NCAppBranding.themeTextColor()
18
+ }
19
20
21
init(image: UIImage) {
22
super.init()
0 commit comments