Skip to content

Instantly share code, notes, and snippets.

View sinnuswong's full-sized avatar
🎯
Focusing

Sinnus sinnuswong

🎯
Focusing
View GitHub Profile
@jnewc
jnewc / NotesApp.swift
Last active June 21, 2025 15:50
A notes app written in <100 lines of swift using SwiftUI
import SwiftUI
let dateFormatter = DateFormatter()
struct NoteItem: Codable, Hashable, Identifiable {
let id: Int
let text: String
var date = Date()
var dateText: String {
dateFormatter.dateFormat = "MMM d yyyy, h:mm a"