alfianlosari /
NoteAppSwiftData
SwiftData Sample Note App
44/100 healthLoading repository data…
calda / repository
A sample Notes app built using SwiftUI and a CloudKit-backed CoreData store.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A laughably simple sample app for experimenting with SwiftUI and a CloudKit-backed CoreData store.
AppDelegate.swiftEnabling iCloud syncing, merging, and remote-change push notifications:
lazy var persistentContainer: NSPersistentCloudKitContainer = {
let container = NSPersistentCloudKitContainer(name: "SwiftUI_Notes")
container.persistentStoreDescriptions.first?
.setOption(true as NSNumber, forKey: NSPersistentStoreRemoteChangeNotificationPostOptionKey)
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
container.viewContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
container.viewContext.automaticallyMergesChangesFromParent = true
return container
}()
NoteList.swiftA sample SwiftUI List backed by a FetchedResultsController
struct NoteList: View {
@ObjectBinding var resultsController = FetchedResultsController(
with: FetchRequest(for: Note.self)
.sorted(by: \.lastModificationDate, ascending: false))
var body: some View {
NavigationView {
List {
ForEach(resultsController.objects) { note in
NoteCell(note: note)
}
}
}
}
}
FetchedResultsController is a Swift interface around an NSFetchedResultsController that conforms to BindableObject.
Selected from shared topics, language and repository description—not editorial ratings.
alfianlosari /
SwiftData Sample Note App
44/100 healthAbGhost-cyber /
A server sample using ktor and Kmongo to save notes
42/100 healthgitpushforce /
A simple sample of how to make a notes app using SwiftUI
dharanidharanr13dev /
A sample iOS Notes app demonstrating MVVM-C and Clean Architecture, with a strong focus on ARC-safe memory management, Core Data usage, dependency injection, coordinator-based navigation, and proper domain–data separation.
62/100 healthKareemelfadaly /
Swift-UI sample demo
28/100 healthbagasstb /
Learn SwiftUI with grocery notes app sample
36/100 health