32 lines
707 B
Swift
32 lines
707 B
Swift
//
|
|
// ServicesScreen.swift
|
|
// Demo
|
|
//
|
|
// Created by Daniel Saidi on 2020-12-07.
|
|
// Copyright © 2020 Daniel Saidi. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SwiftUIKit
|
|
|
|
struct ServicesScreen: View {
|
|
|
|
var body: some View {
|
|
List {
|
|
Section {
|
|
ListText("""
|
|
SwiftKit contains a bunch of service base classes, which helps you implement service decorators, proxies etc.
|
|
|
|
This namespace is currently not available as a demo. Instead, checkout the source code.
|
|
""")
|
|
}
|
|
}.navigationTitle("Services")
|
|
}
|
|
}
|
|
|
|
struct ServicesScreen_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ServicesScreen()
|
|
}
|
|
}
|