fix layout of UnselectedView

This commit is contained in:
Duong Thai 2023-10-13 23:22:26 +07:00
parent d172df68e3
commit 9e787f98d8

View file

@ -10,9 +10,13 @@ import SwiftUI
struct UnselectedView: View {
var body: some View {
Text("NoXcodeSelected")
.font(.title)
.foregroundColor(.secondary)
VStack {
Spacer()
Text("NoXcodeSelected")
.font(.title)
.foregroundColor(.secondary)
Spacer()
}
}
}