leganto-apple/Leganto/ContentView.swift
Louis Hollingworth a18f485502
Basic views added.
Next step is to build the feed item list once a parser has been found/
    made.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-22 19:30:02 +01:00

61 lines
1.5 KiB
Swift

//
// ContentView.swift
// Leganto
//
// Created by Louis Hollingworth on 2023-05-21.
//
import SwiftUI
import CoreData
struct ContentView: View {
@Environment(\.managedObjectContext) var moc
@FetchRequest(sortDescriptors: [], animation: .default) var feeds: FetchedResults<Feed>
@State private var showAddScreen = false
var body: some View {
NavigationView {
List {
ForEach(feeds) { item in
Text(item.name!)
}
.onDelete(perform: deleteItems)
}
.navigationTitle("feeds")
.toolbar {
ToolbarItem {
Button(action: {
showAddScreen.toggle()
}) {
Label("add", systemImage: "plus")
}
}
}
.sheet(isPresented: $showAddScreen) {
AddFeed()
}
}
}
func deleteItems(offsets: IndexSet) {
withAnimation {
offsets.map { feeds[$0] }.forEach(moc.delete)
do {
try moc.save()
} catch {
let err = error as NSError
fatalError("Unresolved error \(err), \(err.userInfo)")
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}