Richard Legault
Richard Legault
I tried fixedSize() but the runtime warning still occurred. I am not very familiar with the constraints to make any suggestions.
To fix the delete to propagate down to the subdirectory files you need to add the line `fileListViewController.allowEditing = self.allowEditing` at line 48 in FileListTableView.swift This will allow it to...
Here is a view representable for SwiftUI usage import SwiftUI import UIKit import FileBrowser struct FileListViewControllerRepresentable: UIViewControllerRepresentable { typealias UIViewControllerType = FileBrowser func makeUIViewController(context: UIViewControllerRepresentableContext) -> FileBrowser { return FileBrowser()...