Skip to content

Instantly share code, notes, and snippets.

@ericlewis
ericlewis / CodableAppStorage.swift
Last active October 15, 2024 21:40
Using Codable with AppStorage, the easy way!
import Foundation
import SwiftUI
// MARK: Demo
struct Example: RawRepresentable, Codable {
let id: UUID
}
// This is functionally the same as above, but we have a neater type without creating a new protocol.