Add direct access to push notifications settings in notifications tab

This commit is contained in:
Thomas Ricouard 2023-12-19 09:58:35 +01:00
parent 5a2478c791
commit 2fdaed7df4

View file

@ -31,6 +31,13 @@ struct NotificationsTab: View {
.withAppRouter()
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
.toolbar {
ToolbarItem(placement: .topBarTrailing) {
Button {
routerPath.presentedSheet = .accountPushNotficationsSettings
} label: {
Image(systemName: "bell.badge")
}
}
if !isSecondaryColumn {
statusEditorToolbarItem(routerPath: routerPath,
visibility: userPreferences.postVisibility)