summaryrefslogtreecommitdiff
path: root/Xmission/ContentView.swift
diff options
context:
space:
mode:
authorChristian Segundo2023-06-11 01:22:38 +0200
committerChristian Segundo2023-06-11 01:22:38 +0200
commit864b644e8ecafccaf84b40168524e47351a6d111 (patch)
treef3e108abf0a583e775e203ad9b8dab05c73006a4 /Xmission/ContentView.swift
downloadxmission-ios-864b644e8ecafccaf84b40168524e47351a6d111.tar.gz
Initial Commit
Diffstat (limited to 'Xmission/ContentView.swift')
-rw-r--r--Xmission/ContentView.swift26
1 files changed, 26 insertions, 0 deletions
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()
+ }
+}