/LocalNotificationEditor

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

Primary LanguageSwiftMIT LicenseMIT

LocalNotificationEditor

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

Usage

Here's a example code:

import SwiftUI
import LocalNotificationEditor

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