Skip to content

Instantly share code, notes, and snippets.

@standinga
Created November 29, 2020 09:50
Show Gist options
  • Save standinga/77cf49ae5f9a48ab70cf244a619f63ed to your computer and use it in GitHub Desktop.
Save standinga/77cf49ae5f9a48ab70cf244a619f63ed to your computer and use it in GitHub Desktop.
IOS/OSX Networking initial view
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Button("Server") {
server?.start()
}
Spacer()
Button("Client") {
client.start()
}
}.frame(height: 70)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment