From 5a10e30319b461e450cd8cf72d64d535ebeb6e7e Mon Sep 17 00:00:00 2001 From: Paul Date: Mon, 2 Feb 2026 23:42:46 +0100 Subject: [PATCH] Initial commit --- .../AccentColor.colorset/Contents.json | 11 ++++++ .../AppIcon.appiconset/Contents.json | 35 +++++++++++++++++++ MindDump/Assets.xcassets/Contents.json | 6 ++++ MindDump/ContentView.swift | 17 +++++++++ MindDump/MindDumpApp.swift | 10 ++++++ 5 files changed, 79 insertions(+) create mode 100644 MindDump/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 MindDump/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 MindDump/Assets.xcassets/Contents.json create mode 100644 MindDump/ContentView.swift create mode 100644 MindDump/MindDumpApp.swift diff --git a/MindDump/Assets.xcassets/AccentColor.colorset/Contents.json b/MindDump/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/MindDump/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MindDump/Assets.xcassets/AppIcon.appiconset/Contents.json b/MindDump/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..2305880 --- /dev/null +++ b/MindDump/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,35 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MindDump/Assets.xcassets/Contents.json b/MindDump/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/MindDump/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/MindDump/ContentView.swift b/MindDump/ContentView.swift new file mode 100644 index 0000000..b000a7e --- /dev/null +++ b/MindDump/ContentView.swift @@ -0,0 +1,17 @@ +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/MindDump/MindDumpApp.swift b/MindDump/MindDumpApp.swift new file mode 100644 index 0000000..8b3be13 --- /dev/null +++ b/MindDump/MindDumpApp.swift @@ -0,0 +1,10 @@ +import SwiftUI + +@main +struct MindDumpApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +}