Skip to content

Instantly share code, notes, and snippets.

@ericlewis
ericlewis / CodableAppStorage.swift
Last active December 6, 2025 18:14
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.