Skip to content

Instantly share code, notes, and snippets.

View bok-'s full-sized avatar

Rob Amos bok-

  • Melbourne, Australia
View GitHub Profile
@nicklockwood
nicklockwood / OSKit.swift
Created January 28, 2023 11:32
A lightweight approach to writing cross-platform code in SwiftUI without a lot of conditional compilation blocks
import SwiftUI
enum OSDocumentError: Error {
case unknownFileFormat
}
#if canImport(UIKit)
import UIKit