Files
swiftui-math/Sources/SwiftUIMath/Internal/Helpers/Platform.swift
2026-01-01 12:13:22 +01:00

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