mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-18 17:25:21 -04:00
Track download type on app launch
This commit is contained in:
parent
d7afbcd942
commit
dbf1597157
1 changed files with 2 additions and 1 deletions
|
@ -8,13 +8,14 @@
|
|||
import SwiftUI
|
||||
|
||||
struct ContentView: View {
|
||||
@AppStorage("downloadType")
|
||||
private var downloadType: DownloadType = .firmware
|
||||
@AppStorage("includeBetas")
|
||||
private var includeBetas: Bool = false
|
||||
@AppStorage("showCompatible")
|
||||
private var showCompatible: Bool = false
|
||||
@Binding var refreshing: Bool
|
||||
@Binding var downloadInProgress: Bool
|
||||
@State private var downloadType: DownloadType = .firmware
|
||||
@State private var firmwares: [Firmware] = []
|
||||
@State private var installers: [Installer] = []
|
||||
@State private var searchString: String = ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue