aboutsummaryrefslogtreecommitdiff
path: root/LibreEdit
diff options
context:
space:
mode:
Diffstat (limited to 'LibreEdit')
-rw-r--r--LibreEdit/Assets.xcassets/AccentColor.colorset/Contents.json11
-rw-r--r--LibreEdit/Assets.xcassets/AppIcon.appiconset/Contents.json13
-rw-r--r--LibreEdit/Assets.xcassets/Contents.json6
-rw-r--r--LibreEdit/ContentView.swift24
-rw-r--r--LibreEdit/LibreEditApp.swift17
-rw-r--r--LibreEdit/Preview Content/Preview Assets.xcassets/Contents.json6
6 files changed, 77 insertions, 0 deletions
diff --git a/LibreEdit/Assets.xcassets/AccentColor.colorset/Contents.json b/LibreEdit/Assets.xcassets/AccentColor.colorset/Contents.json
new file mode 100644
index 0000000..eb87897
--- /dev/null
+++ b/LibreEdit/Assets.xcassets/AccentColor.colorset/Contents.json
@@ -0,0 +1,11 @@
+{
+ "colors" : [
+ {
+ "idiom" : "universal"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/LibreEdit/Assets.xcassets/AppIcon.appiconset/Contents.json b/LibreEdit/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..13613e3
--- /dev/null
+++ b/LibreEdit/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/LibreEdit/Assets.xcassets/Contents.json b/LibreEdit/Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/LibreEdit/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/LibreEdit/ContentView.swift b/LibreEdit/ContentView.swift
new file mode 100644
index 0000000..3d5fcf6
--- /dev/null
+++ b/LibreEdit/ContentView.swift
@@ -0,0 +1,24 @@
+//
+// ContentView.swift
+// LibreEdit
+//
+// 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/LibreEdit/LibreEditApp.swift b/LibreEdit/LibreEditApp.swift
new file mode 100644
index 0000000..23a791f
--- /dev/null
+++ b/LibreEdit/LibreEditApp.swift
@@ -0,0 +1,17 @@
+//
+// LibreEditApp.swift
+// LibreEdit
+//
+// Created by Christian Cleberg on 2024-01-13.
+//
+
+import SwiftUI
+
+@main
+struct LibreEditApp: App {
+ var body: some Scene {
+ WindowGroup {
+ ContentView()
+ }
+ }
+}
diff --git a/LibreEdit/Preview Content/Preview Assets.xcassets/Contents.json b/LibreEdit/Preview Content/Preview Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/LibreEdit/Preview Content/Preview Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}