SUIExamplesApp.swift 515 B

12345678910111213141516171819202122232425
  1. //
  2. // SUIExamplesApp.swift
  3. // SUIExamples
  4. //
  5. // Created by Pavel Yurchenko on 17.08.2024.
  6. //
  7. import SwiftUI
  8. @main
  9. struct SUIExamplesApp: App {
  10. @StateObject private var navigatorStack: NavigatorStack = DI.shared.navigationStack
  11. var body: some Scene {
  12. WindowGroup {
  13. NavigationStack(path: $navigatorStack.path){
  14. MainBuilder().build()
  15. }
  16. .navigationDestination(for: Route.self) {
  17. $0.buildModule()
  18. }
  19. }
  20. }
  21. }