10 lines
234 B
Swift
10 lines
234 B
Swift
import SwiftUI
|
|
|
|
#if canImport(UIKit)
|
|
typealias PlatformColor = UIColor
|
|
typealias PlatformBezierPath = UIBezierPath
|
|
#elseif canImport(AppKit)
|
|
typealias PlatformColor = NSColor
|
|
typealias PlatformBezierPath = NSBezierPath
|
|
#endif
|