mirror of
https://github.com/exyte/PopupView.git
synced 2026-06-06 20:18:33 +00:00
22 lines
408 B
Swift
22 lines
408 B
Swift
//
|
|
// ExampleApp.swift
|
|
// ExampleWatch WatchKit Extension
|
|
//
|
|
// Created by Alisa Mylnikova on 17/08/2020.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ExampleApp: App {
|
|
@SceneBuilder var body: some Scene {
|
|
WindowGroup {
|
|
NavigationView {
|
|
ContentView()
|
|
}
|
|
}
|
|
|
|
WKNotificationScene(controller: NotificationController.self, category: "myCategory")
|
|
}
|
|
}
|