first commit

This commit is contained in:
Victor Bodinaud
2024-10-14 17:00:08 +02:00
parent b810070422
commit 7850943a32
802 changed files with 13180 additions and 24 deletions

View File

@@ -0,0 +1,49 @@
//
// BoosterConfirmationScreen.swift
//
//
// Created by Victor on 13/06/2024.
//
import SwiftUI
struct BoosterConfirmationScreen: View {
init() {
do {
try FontRegistration().registerFonts()
} catch {
}
}
var body: some View {
ZStack {
backgroundGradient
.ignoresSafeArea()
VStack {
VStack(spacing: 32) {
Image("booster_logo", bundle: Bundle.module)
.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()
}