Post

Replies

Boosts

Views

Activity

Reply to RC Pro Timeline Notification Not Received in Xcode
Here's a simplified version of the code I'm trying to use... // Define a custom notification name. extension Notification.Name { static let timelineDidFinish = Notification.Name("timelineDidFinish") } struct ContentView: View { var body: some View { Text("Listening for Notification...") .onReceive(NotificationCenter.default.publisher(for: .timelineDidFinish)) { notification in print("I hear the notification") } } }
1d