We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like all the backgroundColor:NSColor variables can be replaced with SwiftUI.Color and then at the end a cross platform alias
backgroundColor:NSColor
SwiftUI.Color
#if os(macOS) import AppKit typealias UXTextView = NSTextView typealias UXTextViewDelegate = NSTextViewDelegate typealias UColor = NSColor #else import UIKit typealias UXTextView = UITextView typealias UXTextViewDelegate = UITextViewDelegate typealias UColor = UIColor #endif
The text was updated successfully, but these errors were encountered:
36: ios compile fixes, switching NSColor for background colour to Swi…
d84964a
…ft Color for ZeeZide#36
Note to self, use #if canImport(UIKit) not os()
#if canImport(UIKit)
os()
Sorry, something went wrong.
No branches or pull requests
Seems like all the
backgroundColor:NSColor
variables can be replaced withSwiftUI.Color
and then at the end a cross platform aliasThe text was updated successfully, but these errors were encountered: