diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-06 13:52:20 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-06 13:52:20 -0800 |
| commit | c0068f11c51bb587c16dfacb73629b3c6fb67fc8 (patch) | |
| tree | 20753433f348b03bb590e0fe6a4cafbe56f4c859 /Hotline/Views/FileListView.swift | |
| parent | 06a2166415bca7e5fe32eac505859bdd690ab8e0 (diff) | |
Further work on UI organization
Diffstat (limited to 'Hotline/Views/FileListView.swift')
| -rw-r--r-- | Hotline/Views/FileListView.swift | 26 |
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") - ]) -} |