Created
November 29, 2020 09:50
-
-
Save standinga/77cf49ae5f9a48ab70cf244a619f63ed to your computer and use it in GitHub Desktop.
IOS/OSX Networking initial view
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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