Files
AlloVoisinsSwiftUI/AlloVoisinsSwiftUI/Screens/Booster/BoosterConfirmationScreen.swift
Victor Bodinaud e9719414e9 🚀 Start Project
2024-10-14 17:02:14 +02:00

43 lines
1.2 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// BoosterConfirmationScreen.swift
//
//
// Created by Victor on 13/06/2024.
//
import SwiftUI
struct BoosterConfirmationScreen: View {
var body: some View {
ZStack {
backgroundGradient
.ignoresSafeArea()
VStack {
VStack(spacing: 32) {
Image("booster_logo")
.resizable()
.frame(width: 210, height: 180)
SQText("Cest confirmé !", size: 18, font: .bold)
.foregroundColor(.white)
SQText("Votre profil sera boosté dès demain.", size: 32, font: .bold)
.foregroundColor(.white)
.multilineTextAlignment(.center)
}.padding()
Spacer()
VStack(spacing: 16) {
SQButton("Accéder à mon option") {
}
SQText("XX,XX € / mois, sans engagement.", size: 13)
.foregroundColor(.white)
}
}
}
}
}
#Preview {
BoosterConfirmationScreen()
}