aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Session/AboutView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iosApp/iosApp/Session/AboutView.swift')
-rw-r--r--iosApp/iosApp/Session/AboutView.swift34
1 files changed, 34 insertions, 0 deletions
diff --git a/iosApp/iosApp/Session/AboutView.swift b/iosApp/iosApp/Session/AboutView.swift
new file mode 100644
index 0000000..c0f9099
--- /dev/null
+++ b/iosApp/iosApp/Session/AboutView.swift
@@ -0,0 +1,34 @@
+//
+// AboutView.swift
+// iosApp
+//
+// Created by Iván on 15/02/22.
+// Copyright © 2022 orgName. All rights reserved.
+//
+
+import SwiftUI
+
+struct AboutView: View {
+ var body: some View {
+ List {
+ Text("about-text").padding()
+ HStack {
+ Text("version")
+ Spacer()
+ Text("1.0").foregroundColor(.secondary)
+ }
+
+ Button {
+ // TODO
+ } label: {
+ Label("source-code", systemImage: "chevron.left.forwardslash.chevron.right")
+ }
+
+ Button {
+ // TODO
+ } label: {
+ Label("website", systemImage: "globe")
+ }
+ }
+ }
+}