mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-02-06 20:28:39 +01:00
27 lines
458 B
Swift
27 lines
458 B
Swift
//
|
|
// UnselectedView.swift
|
|
// Xcodes
|
|
//
|
|
// Created by Duong Thai on 13/10/2023.
|
|
// Copyright © 2023 Robots and Pencils. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct UnselectedView: View {
|
|
var body: some View {
|
|
VStack {
|
|
Spacer()
|
|
Text("NoXcodeSelected")
|
|
.font(.title)
|
|
.foregroundColor(.secondary)
|
|
Spacer()
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
UnselectedView()
|
|
.padding()
|
|
}
|