Files
swiftui-math/Sources/SwiftUIMath/Internal/Helpers/Platform.swift
Guille Gonzalez 5e8e93b53e Add helpers
2025-12-31 12:59:11 +01:00

12 lines
294 B
Swift

// Derived from SwiftMath by Mike Griebling (MIT License)
import SwiftUI
#if canImport(UIKit)
typealias PlatformColor = UIColor
typealias PlatformBezierPath = UIBezierPath
#elseif canImport(AppKit)
typealias PlatformColor = NSColor
typealias PlatformBezierPath = NSBezierPath
#endif