LocalNotificationEditor

A SwiftUI view for easily displaying, adding, removing, and editing local notifications for debugging.

View on Github

Usage

Here's a example code:

import SwiftUI
import LocalNotificationEditor

public struct MyView: View {
  public var body: some View {
    NavigationStack {
      LocalNotificationList(userNotificationCenter: .current())
    }
  }
}