summaryrefslogtreecommitdiff
path: root/Jel/Views/Utility
diff options
context:
space:
mode:
Diffstat (limited to 'Jel/Views/Utility')
-rw-r--r--Jel/Views/Utility/ConsoleSheetView.swift35
1 files changed, 0 insertions, 35 deletions
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))
-}