Skip to content

Instantly share code, notes, and snippets.

View OxyFlax's full-sized avatar
🏠
Working from home

OxyFlax OxyFlax

🏠
Working from home
View GitHub Profile
@jnewc
jnewc / NotesApp.swift
Last active January 21, 2024 17:40
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"