├── .gitignore ├── Package.swift ├── README.md ├── ServerDrivenSwiftUIExampleProject ├── ServerDrivenSwiftUIExampleProject.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcuserdata │ │ │ └── andreas.linde.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── andreas.linde.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ServerDrivenSwiftUIExampleProject │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── ContentViewModel.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── ServerDrivenSwiftUIExampleProjectApp.swift │ └── ViewState.swift ├── ServerExample ├── Dockerfile ├── Package.resolved ├── Package.swift ├── Public │ └── .gitkeep ├── Sources │ ├── App │ │ ├── Controllers │ │ │ └── .gitkeep │ │ ├── configure.swift │ │ └── routes.swift │ └── Run │ │ └── main.swift ├── Tests │ └── AppTests │ │ └── AppTests.swift └── docker-compose.yml ├── Sources └── ServerDrivenSwiftUI │ ├── Components │ ├── Button.swift │ ├── ColorModel.swift │ ├── Divider.swift │ ├── GeometryReader.swift │ ├── HStack.swift │ ├── Image.swift │ ├── LazyVStack.swift │ ├── ScrollView.swift │ ├── Spacer.swift │ ├── Text.swift │ ├── VStack.swift │ ├── ZStack.swift │ └── modifiers │ │ ├── Background.swift │ │ ├── CoordinateSpace.swift │ │ ├── CornerRadius.swift │ │ ├── EdgesIgnoringSafeArea.swift │ │ ├── FixedSize.swift │ │ ├── FontModel.swift │ │ ├── ForegroundColor.swift │ │ ├── Frame.swift │ │ ├── LineLimit.swift │ │ ├── MultilineTextAlignment.swift │ │ ├── NavigationTitle.swift │ │ ├── OnAppear.swift │ │ ├── OnDisappear.swift │ │ ├── OnTapGesture.swift │ │ ├── Overlay.swift │ │ └── Padding.swift │ ├── Model │ ├── Actions.swift │ ├── ColorType.swift │ ├── File.swift │ ├── FontType.swift │ ├── Model.swift │ ├── ModelBuilder.swift │ └── ModelExtensions.swift │ ├── ServerDrivenSwiftUI.swift │ └── Utils │ ├── CodableExtensions.swift │ └── IfConditions.swift └── Tests └── ServerDrivenSwiftUITests └── ServerDrivenSwiftUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/README.md -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcuserdata/andreas.linde.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/project.xcworkspace/xcuserdata/andreas.linde.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/xcuserdata/andreas.linde.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject.xcodeproj/xcuserdata/andreas.linde.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ContentView.swift -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ContentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ContentViewModel.swift -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProjectApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProjectApp.swift -------------------------------------------------------------------------------- /ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ViewState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerDrivenSwiftUIExampleProject/ServerDrivenSwiftUIExampleProject/ViewState.swift -------------------------------------------------------------------------------- /ServerExample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Dockerfile -------------------------------------------------------------------------------- /ServerExample/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Package.resolved -------------------------------------------------------------------------------- /ServerExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Package.swift -------------------------------------------------------------------------------- /ServerExample/Public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerExample/Sources/App/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerExample/Sources/App/configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Sources/App/configure.swift -------------------------------------------------------------------------------- /ServerExample/Sources/App/routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Sources/App/routes.swift -------------------------------------------------------------------------------- /ServerExample/Sources/Run/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Sources/Run/main.swift -------------------------------------------------------------------------------- /ServerExample/Tests/AppTests/AppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/Tests/AppTests/AppTests.swift -------------------------------------------------------------------------------- /ServerExample/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/ServerExample/docker-compose.yml -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/Button.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/ColorModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/ColorModel.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/Divider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/Divider.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/GeometryReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/GeometryReader.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/HStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/HStack.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/Image.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/LazyVStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/LazyVStack.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/ScrollView.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/Spacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/Spacer.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/Text.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/VStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/VStack.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/ZStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/ZStack.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/Background.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/CoordinateSpace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/CoordinateSpace.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/CornerRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/CornerRadius.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/EdgesIgnoringSafeArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/EdgesIgnoringSafeArea.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/FixedSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/FixedSize.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/FontModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/FontModel.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/ForegroundColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/ForegroundColor.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/Frame.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/LineLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/LineLimit.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/MultilineTextAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/MultilineTextAlignment.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/NavigationTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/NavigationTitle.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/OnAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/OnAppear.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/OnDisappear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/OnDisappear.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/OnTapGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/OnTapGesture.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/Overlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/Overlay.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Components/modifiers/Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Components/modifiers/Padding.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/Actions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/Actions.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/ColorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/ColorType.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/File.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/FontType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/FontType.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/Model.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/ModelBuilder.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Model/ModelExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Model/ModelExtensions.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/ServerDrivenSwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/ServerDrivenSwiftUI.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Utils/CodableExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Utils/CodableExtensions.swift -------------------------------------------------------------------------------- /Sources/ServerDrivenSwiftUI/Utils/IfConditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Sources/ServerDrivenSwiftUI/Utils/IfConditions.swift -------------------------------------------------------------------------------- /Tests/ServerDrivenSwiftUITests/ServerDrivenSwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylindebros/ServerDrivenSwiftUI/HEAD/Tests/ServerDrivenSwiftUITests/ServerDrivenSwiftUITests.swift --------------------------------------------------------------------------------