mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-02-06 20:28:39 +01:00
45 lines
1004 B
Swift
45 lines
1004 B
Swift
//
|
|
// NotInstalledStateButtonsView.swift
|
|
// Xcodes
|
|
//
|
|
// Created by Duong Thai on 13/10/2023.
|
|
// Copyright © 2023 Robots and Pencils. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Version
|
|
|
|
struct NotInstalledStateButtons: View {
|
|
let downloadFileSizeString: String?
|
|
let id: Version
|
|
|
|
@EnvironmentObject var appState: AppState
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading) {
|
|
Button {
|
|
appState.checkMinVersionAndInstall(id: id)
|
|
} label: {
|
|
Text("Install") .help("Install")
|
|
}
|
|
|
|
if let size = downloadFileSizeString {
|
|
Text("DownloadSize")
|
|
.font(.headline)
|
|
Text(size)
|
|
.font(.subheadline)
|
|
} else {
|
|
EmptyView()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
NotInstalledStateButtons(
|
|
downloadFileSizeString: "1,19 GB",
|
|
id: Version(major: 12, minor: 3, patch: 0)
|
|
)
|
|
.padding()
|
|
}
|