32 lines
735 B
Swift
32 lines
735 B
Swift
//
|
|
// NetworkScreen.swift
|
|
// Demo
|
|
//
|
|
// Created by Daniel Saidi on 2020-12-07.
|
|
// Copyright © 2020 Daniel Saidi. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SwiftUIKit
|
|
|
|
struct NetworkScreen: View {
|
|
|
|
var body: some View {
|
|
List {
|
|
Section {
|
|
ListText("""
|
|
SwiftKit contains a bunch of utils for working with network and api-related operations, like requesting and parsing data from an external api.
|
|
|
|
This namespace is currently not available as a demo. Instead, checkout the source code.
|
|
""")
|
|
}
|
|
}.navigationTitle("Network")
|
|
}
|
|
}
|
|
|
|
struct NetworkScreen_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NetworkScreen()
|
|
}
|
|
}
|