From 864b644e8ecafccaf84b40168524e47351a6d111 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 11 Jun 2023 01:22:38 +0200 Subject: Initial Commit --- Xmission/ContentView.swift | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Xmission/ContentView.swift (limited to 'Xmission/ContentView.swift') diff --git a/Xmission/ContentView.swift b/Xmission/ContentView.swift new file mode 100644 index 0000000..0487cfa --- /dev/null +++ b/Xmission/ContentView.swift @@ -0,0 +1,26 @@ +// +// ContentView.swift +// Xmission +// +// Created by Christian Segundo Guevara on 11/6/23. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundColor(.accentColor) + Text("Hello, world!") + } + .padding() + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} -- cgit v1.2.3