feat: 3-column proxies

This commit is contained in:
mrFq1
2023-05-16 14:20:23 +08:00
parent cdffde03b9
commit 90368feb81
8 changed files with 471 additions and 389 deletions
@@ -8,10 +8,10 @@ import SwiftUI
struct ProxyItemView: View {
@Binding var proxy: ProxyItemData
@Binding var proxy: DBProxy
@State var selectable: Bool
init(proxy: Binding<ProxyItemData>, selectable: Bool) {
init(proxy: Binding<DBProxy>, selectable: Bool) {
self._proxy = proxy
self.selectable = selectable