aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Views/FileListView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hotline/Views/FileListView.swift')
-rw-r--r--Hotline/Views/FileListView.swift26
1 files changed, 0 insertions, 26 deletions
diff --git a/Hotline/Views/FileListView.swift b/Hotline/Views/FileListView.swift
deleted file mode 100644
index a315757..0000000
--- a/Hotline/Views/FileListView.swift
+++ /dev/null
@@ -1,26 +0,0 @@
-import SwiftUI
-
-struct FileListView: View {
- @State var files: [HotlineFile]
-
- var body: some View {
- Text("HI")
-// @Bindable var fls = files
-// List {
-// ForEach($fls, id: \.self) { f in
-// if f.isFolder {
-// DisclosureGroup(f.name, isExpanded: false)
-// }
-// else {
-// Text("HELLO")
-// }
-// }
-// }
- }
-}
-
-#Preview {
- FileListView(files: [
- HotlineFile(type: "fldr", creator: "", fileSize: 0, fileName: "Folder")
- ])
-}