Skip to content

Instantly share code, notes, and snippets.

@kowei
kowei / ContentView.swift
Last active April 1, 2021 07:31
default ContentView.swift
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.padding()
}
}
struct ContentView_Previews: PreviewProvider {