-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftUIExamplesApp.swift
More file actions
44 lines (36 loc) · 896 Bytes
/
SwiftUIExamplesApp.swift
File metadata and controls
44 lines (36 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// SwiftUIExamplesApp.swift
// Testy
//
// Created by Matthias Wallner-Géhri on 10.10.25.
//
import SwiftUI
import ComposableArchitecture
@main
struct SwiftUIExamplesApp: App {
var body: some Scene {
WindowGroup {
ImplementationSelectionView()
}
#if os(macOS)
WindowGroup(id: "navigationSplitViewExample") {
NavigationSplitViewViewOnlyContentView()
}
WindowGroup(id: "mvvmExample") {
MVVMContentView()
}
WindowGroup(id: "mvvmcExample") {
MVVMCContentView()
}
WindowGroup(id: "tcaExample") {
TCAContentView(store: .preview)
}
WindowGroup(id: "reduxExample") {
ReduxContentView(store: .preview)
}
WindowGroup(id: "viperExample") {
VIPERContentView()
}
#endif
}
}