У меня есть два просмотра с в основном одинаковыми структурами, в том числе с одинаковыми заполнениями и интервалом. Единственное отличие состоит в том, что в первом представлении «Приветствующего шага» используется более крупный размер значка 240, в то время как в других представлениях используется размер значка 80. Хотя я в порядке с текстом, не выравнивающим, я хотел бы выравнивать позиции кнопок в этих представлениях. Я попытался корректировать прокладку и использовать Spacer (), но ни один подход не работал. Есть ли решение этой проблемы?struct WelcomeStepView: View {
let onNext: () -> Void
var body: some View {
VStack(spacing: 40) {
Spacer()
// App Icon/Logo
VStack(spacing: 20) {
Image("kacardicon")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(height: 240)
Text("Welcome to KaCard")
.font(.title)
.fontWeight(.bold)
.multilineTextAlignment(.center)
Text("This is your smart credit card manager. To get the best experience, we'd like to set up a few features.")
.font(.body)
.foregroundColor(.secondary)
.multilineTextAlignment(.center)
.padding(.horizontal)
}
Spacer()
VStack(spacing: 16) {
Button(action: onNext) {
Text("Get Started")
.font(.headline)
.foregroundColor(.white)
.frame(maxWidth: .infinity)
.padding()
.background(Color.blue)
.cornerRadius(12)
}
}
.padding(.horizontal, 40)
Spacer(minLength: 50)
}
.padding()
}
}
< /code>
struct NotificationPermissionStepView: View {
let onNext: () async -> Void
let onSkip: () -> Void
@State private var isLoading = false
var body: some View {
VStack(spacing: 40) {
Spacer()
VStack(spacing: 20) {
Image(systemName: "bell.circle.fill")
.font(.system(size: 80))
.foregroundColor(.yellow)
Text("Stay on Top of Your Bills")
.font(.title)
.fontWeight(.bold)
.multilineTextAlignment(.center)
Text("We'll send you timely reminders for bill payments, annual fees, and signup bonus deadlines so you never miss an important date.")
.font(.body)
.foregroundColor(.secondary)
.multilineTextAlignment(.center)
.padding(.horizontal)
}
Spacer()
VStack(spacing: 16) {
Button(action: {
isLoading = true
Task {
await onNext()
isLoading = false
}
}) {
HStack {
if isLoading {
ProgressView()
.scaleEffect(0.8)
.progressViewStyle(CircularProgressViewStyle(tint: .white))
}
Text(isLoading ? "Requesting..." : "Enable Notifications")
.font(.headline)
}
.foregroundColor(.white)
.frame(maxWidth: .infinity)
.padding()
.background(Color.yellow)
.cornerRadius(12)
}
.disabled(isLoading)
Button("Skip for Now", action: onSkip)
.font(.subheadline)
.foregroundColor(.secondary)
}
.padding(.horizontal, 40)
Spacer(minLength: 50)
}
.padding()
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... n-swift-ui