Add tip in threads to inform users what trusted network means

Changelog-Added: Added tip in threads to inform users what trusted network means
Signed-off-by: Terry Yiu <git@tyiu.xyz>
This commit is contained in:
2025-06-04 00:14:34 -04:00
committed by Daniel D’Aquino
parent e65219ee3e
commit b3d9ee3fc0
8 changed files with 88 additions and 1 deletions

View File

@@ -7,6 +7,10 @@
import SwiftUI
#if canImport(TipKit)
import TipKit
#endif
class NotificationFilter: ObservableObject, Equatable {
@Published var state: NotificationFilterState
@Published var friend_filter: FriendFilter
@@ -75,7 +79,9 @@ struct NotificationsView: View {
@StateObject var filter = NotificationFilter()
@SceneStorage("NotificationsView.filter_state") var filter_state: NotificationFilterState = .all
@Binding var subtitle: String?
@State var showTip: Bool = true
@Environment(\.colorScheme) var colorScheme
var body: some View {