mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Stub out mark as read and star functionality
This commit is contained in:
@@ -10,6 +10,7 @@ import SwiftUI
|
||||
|
||||
struct SceneNavigationView: View {
|
||||
|
||||
@Environment(\.undoManager) var undoManager
|
||||
@StateObject private var sceneModel = SceneModel()
|
||||
@State private var showSheet: Bool = false
|
||||
@State private var sheetToShow: ToolbarSheets = .none
|
||||
@@ -48,6 +49,7 @@ struct SceneNavigationView: View {
|
||||
}
|
||||
.environmentObject(sceneModel)
|
||||
.onAppear {
|
||||
sceneModel.undoManager = undoManager
|
||||
sceneModel.startup()
|
||||
}
|
||||
.sheet(isPresented: $showSheet, onDismiss: { sheetToShow = .none }) {
|
||||
|
||||
Reference in New Issue
Block a user