summaryrefslogtreecommitdiff
path: root/Jel/Views
diff options
context:
space:
mode:
Diffstat (limited to 'Jel/Views')
-rw-r--r--Jel/Views/Dashboard/Library/LibraryIconView.swift18
-rw-r--r--Jel/Views/Settings/SettingsView.swift4
-rw-r--r--Jel/Views/Utility/ConsoleSheetView.swift35
3 files changed, 21 insertions, 36 deletions
diff --git a/Jel/Views/Dashboard/Library/LibraryIconView.swift b/Jel/Views/Dashboard/Library/LibraryIconView.swift
new file mode 100644
index 0000000..4f6c711
--- /dev/null
+++ b/Jel/Views/Dashboard/Library/LibraryIconView.swift
@@ -0,0 +1,18 @@
+//
+// LibraryIconView.swift
+// Jel
+//
+// Created by zerocool on 12/15/23.
+//
+
+import SwiftUI
+
+struct LibraryIconView: View {
+ var body: some View {
+ Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
+ }
+}
+
+#Preview {
+ LibraryIconView()
+}
diff --git a/Jel/Views/Settings/SettingsView.swift b/Jel/Views/Settings/SettingsView.swift
index 6eaa2e2..676b977 100644
--- a/Jel/Views/Settings/SettingsView.swift
+++ b/Jel/Views/Settings/SettingsView.swift
@@ -17,8 +17,10 @@ struct SettingsView: View {
var body: some View {
NavigationStack {
Form {
- Section {
+ Section() {
AppearancePicker()
+ } header: {
+ Text("Accessibility")
}
Section {
diff --git a/Jel/Views/Utility/ConsoleSheetView.swift b/Jel/Views/Utility/ConsoleSheetView.swift
deleted file mode 100644
index a047315..0000000
--- a/Jel/Views/Utility/ConsoleSheetView.swift
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// ConsoleSheetView.swift
-// Jel
-//
-// Created by zerocool on 12/12/23.
-//
-
-import SwiftUI
-import PulseUI
-
-struct ConsoleSheetView: View {
- @Binding var showingConsoleSheet: Bool
-
- var body: some View {
- NavigationStack {
- ConsoleView()
- .closeButtonHidden()
- .navigationTitle("Debug consoles")
- .toolbar {
- ToolbarItem {
- Button {
- showingConsoleSheet.toggle()
- } label: {
- Text("Done")
- .bold()
- }
- }
- }
- }
- }
-}
-
-#Preview {
- ConsoleSheetView(showingConsoleSheet: .constant(true))
-}