IceCubesApp/IceCubesApp/App/Tabs/NotificationTab.swift
2022-12-24 11:50:05 +01:00

25 lines
617 B
Swift

import SwiftUI
import Timeline
import Env
import Network
import Notifications
struct NotificationsTab: View {
@StateObject private var routeurPath = RouterPath()
@Binding var popToRootTab: IceCubesApp.Tab
var body: some View {
NavigationStack(path: $routeurPath.path) {
NotificationsListView()
.withAppRouteur()
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
}
.environmentObject(routeurPath)
.onChange(of: $popToRootTab.wrappedValue) { popToRootTab in
if popToRootTab == .notifications {
routeurPath.path = []
}
}
}
}