yattee/macOS/Updates/CheckForUpdatesView.swift

11 lines
266 B
Swift
Raw Normal View History

2021-12-07 23:09:49 +00:00
import SwiftUI
struct CheckForUpdatesView: View {
@EnvironmentObject<UpdaterModel> private var updater
var body: some View {
Button("Check For Updates…", action: updater.checkForUpdates)
.disabled(!updater.canCheckForUpdates)
}
}