aboutsummaryrefslogtreecommitdiff
path: root/LibreSecrets
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-01-13 20:50:42 -0600
committerChristian Cleberg <hello@cleberg.net>2024-01-13 20:50:42 -0600
commit39eb969101d2e9b4136da4c1ced3cfc99344b8e6 (patch)
tree541a05b79aa2b412bf8635f3280589ed144c2e83 /LibreSecrets
downloadlibre-secrets-39eb969101d2e9b4136da4c1ced3cfc99344b8e6.tar.gz
libre-secrets-39eb969101d2e9b4136da4c1ced3cfc99344b8e6.tar.bz2
libre-secrets-39eb969101d2e9b4136da4c1ced3cfc99344b8e6.zip
Initial Commit
Diffstat (limited to 'LibreSecrets')
-rw-r--r--LibreSecrets/Assets.xcassets/AccentColor.colorset/Contents.json11
-rw-r--r--LibreSecrets/Assets.xcassets/AppIcon.appiconset/Contents.json13
-rw-r--r--LibreSecrets/Assets.xcassets/Contents.json6
-rw-r--r--LibreSecrets/ContentView.swift24
-rw-r--r--LibreSecrets/LibreSecretsApp.swift17
-rw-r--r--LibreSecrets/Preview Content/Preview Assets.xcassets/Contents.json6
6 files changed, 77 insertions, 0 deletions
diff --git a/LibreSecrets/Assets.xcassets/AccentColor.colorset/Contents.json b/LibreSecrets/Assets.xcassets/AccentColor.colorset/Contents.json
new file mode 100644
index 0000000..eb87897
--- /dev/null
+++ b/LibreSecrets/Assets.xcassets/AccentColor.colorset/Contents.json
@@ -0,0 +1,11 @@
+{
+ "colors" : [
+ {
+ "idiom" : "universal"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/LibreSecrets/Assets.xcassets/AppIcon.appiconset/Contents.json b/LibreSecrets/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..13613e3
--- /dev/null
+++ b/LibreSecrets/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,13 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "platform" : "ios",
+ "size" : "1024x1024"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/LibreSecrets/Assets.xcassets/Contents.json b/LibreSecrets/Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/LibreSecrets/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/LibreSecrets/ContentView.swift b/LibreSecrets/ContentView.swift
new file mode 100644
index 0000000..c4de5a2
--- /dev/null
+++ b/LibreSecrets/ContentView.swift
@@ -0,0 +1,24 @@
+//
+// ContentView.swift
+// LibreSecrets
+//
+// Created by Christian Cleberg on 2024-01-13.
+//
+
+import SwiftUI
+
+struct ContentView: View {
+ var body: some View {
+ VStack {
+ Image(systemName: "globe")
+ .imageScale(.large)
+ .foregroundStyle(.tint)
+ Text("Hello, world!")
+ }
+ .padding()
+ }
+}
+
+#Preview {
+ ContentView()
+}
diff --git a/LibreSecrets/LibreSecretsApp.swift b/LibreSecrets/LibreSecretsApp.swift
new file mode 100644
index 0000000..bcd13e5
--- /dev/null
+++ b/LibreSecrets/LibreSecretsApp.swift
@@ -0,0 +1,17 @@
+//
+// LibreSecretsApp.swift
+// LibreSecrets
+//
+// Created by Christian Cleberg on 2024-01-13.
+//
+
+import SwiftUI
+
+@main
+struct LibreSecretsApp: App {
+ var body: some Scene {
+ WindowGroup {
+ ContentView()
+ }
+ }
+}
diff --git a/LibreSecrets/Preview Content/Preview Assets.xcassets/Contents.json b/LibreSecrets/Preview Content/Preview Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/LibreSecrets/Preview Content/Preview Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}